summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/interactive_http/miniserv.pl
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-08-07 17:40:36 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-08-07 17:40:36 +0000
commitbe838931607e1ab14c8c699e20dd807b55579f7b (patch)
tree0f528e9479c6c6da60016911884cb00a7deaf731 /perl-install/standalone/interactive_http/miniserv.pl
parent1519ef9c35afba7916dab3826dfa17df32e57b7a (diff)
downloaddrakx-be838931607e1ab14c8c699e20dd807b55579f7b.tar
drakx-be838931607e1ab14c8c699e20dd807b55579f7b.tar.gz
drakx-be838931607e1ab14c8c699e20dd807b55579f7b.tar.bz2
drakx-be838931607e1ab14c8c699e20dd807b55579f7b.tar.xz
drakx-be838931607e1ab14c8c699e20dd807b55579f7b.zip
Initial revision
Diffstat (limited to 'perl-install/standalone/interactive_http/miniserv.pl')
-rw-r--r--perl-install/standalone/interactive_http/miniserv.pl1817
1 files changed, 1817 insertions, 0 deletions
diff --git a/perl-install/standalone/interactive_http/miniserv.pl b/perl-install/standalone/interactive_http/miniserv.pl
new file mode 100644
index 000000000..f866ee81a
--- /dev/null
+++ b/perl-install/standalone/interactive_http/miniserv.pl
@@ -0,0 +1,1817 @@
+#!/usr/bin/perl
+# A very simple perl web server used by Webmin
+
+# Require basic libraries
+package miniserv;
+use Socket;
+use POSIX;
+use Sys::Hostname;
+
+# Find and read config file
+if (@ARGV != 1) {
+ die "Usage: miniserv.pl <config file>";
+ }
+if ($ARGV[0] =~ /^\//) {
+ $conf = $ARGV[0];
+ }
+else {
+ chop($pwd = `pwd`);
+ $conf = "$pwd/$ARGV[0]";
+ }
+open(CONF, $conf) || die "Failed to open config file $conf : $!";
+while(<CONF>) {
+ s/\r|\n//g;
+ if (/^#/ || !/\S/) { next; }
+ /^([^=]+)=(.*)$/;
+ $name = $1; $val = $2;
+ $name =~ s/^\s+//g; $name =~ s/\s+$//g;
+ $val =~ s/^\s+//g; $val =~ s/\s+$//g;
+ $config{$name} = $val;
+ }
+close(CONF);
+
+# Check is SSL is enabled and available
+if ($config{'ssl'}) {
+ eval "use Net::SSLeay";
+ if (!$@) {
+ $use_ssl = 1;
+ # These functions only exist for SSLeay 1.0
+ eval "Net::SSLeay::SSLeay_add_ssl_algorithms()";
+ eval "Net::SSLeay::load_error_strings()";
+ if (defined(&Net::SSLeay::X509_STORE_CTX_get_current_cert) &&
+ defined(&Net::SSLeay::CTX_load_verify_locations) &&
+ defined(&Net::SSLeay::CTX_set_verify)) {
+ $client_certs = 1;
+ }
+ }
+ }
+
+# Check if the syslog module is available to log hacking attempts
+if ($config{'syslog'}) {
+ eval "use Sys::Syslog qw(:DEFAULT setlogsock)";
+ if (!$@) {
+ $use_syslog = 1;
+ }
+ }
+
+# check if the PAM module is available to authenticate
+eval "use Authen::PAM";
+if (!$@) {
+ # check if the PAM authentication can be used by opening a handle
+ if (! ref($pamh = new Authen::PAM("webmin", "root", \&pam_conv_func))) {
+ print STDERR "PAM module available, but error during init !\n";
+ print STDERR "Disabling PAM functions.\n";
+ }
+ else {
+ $use_pam = 1;
+ }
+ }
+
+# check if the TCP-wrappers module is available
+if ($config{'libwrap'}) {
+ eval "use Authen::Libwrap qw(hosts_ctl STRING_UNKNOWN)";
+ if (!$@) {
+ $use_libwrap = 1;
+ }
+ }
+
+# Get miniserv's perl path and location
+$miniserv_path = $0;
+open(SOURCE, $miniserv_path);
+<SOURCE> =~ /^#!(\S+)/; $perl_path = $1;
+close(SOURCE);
+@miniserv_argv = @ARGV;
+
+# Check vital config options
+%vital = ("port", 80,
+ "root", "./",
+ "server", "MiniServ/0.01",
+ "index_docs", "index.html index.htm index.cgi",
+ "addtype_html", "text/html",
+ "addtype_txt", "text/plain",
+ "addtype_gif", "image/gif",
+ "addtype_jpg", "image/jpeg",
+ "addtype_jpeg", "image/jpeg",
+ "realm", "MiniServ",
+ "session_login", "/session_login.cgi"
+ );
+foreach $v (keys %vital) {
+ if (!$config{$v}) {
+ if ($vital{$v} eq "") {
+ die "Missing config option $v";
+ }
+ $config{$v} = $vital{$v};
+ }
+ }
+if (!$config{'sessiondb'}) {
+ $config{'pidfile'} =~ /^(.*)\/[^\/]+$/;
+ $config{'sessiondb'} = "$1/sessiondb";
+ }
+die "Session authentication cannot be used in inetd mode"
+ if ($config{'inetd'} && $config{'session'});
+
+# init days and months for http_date
+@weekday = ( "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" );
+@month = ( "Jan", "Feb", "Mar", "Apr", "May", "Jun",
+ "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" );
+
+# Change dir to the server root
+chdir($config{'root'});
+$user_homedir = (getpwuid($<))[7];
+
+# Read users file
+if ($config{'userfile'}) {
+ open(USERS, $config{'userfile'});
+ while(<USERS>) {
+ s/\r|\n//g;
+ local @user = split(/:/, $_);
+ $users{$user[0]} = $user[1];
+ $certs{$user[0]} = $user[3] if ($user[3]);
+ if ($user[4] =~ /^allow\s+(.*)/) {
+ $allow{$user[0]} = [ &to_ipaddress(split(/\s+/, $1)) ];
+ }
+ elsif ($user[4] =~ /^deny\s+(.*)/) {
+ $deny{$user[0]} = [ &to_ipaddress(split(/\s+/, $1)) ];
+ }
+ }
+ close(USERS);
+ }
+
+# Setup SSL if possible and if requested
+if ($use_ssl) {
+ $ssl_ctx = Net::SSLeay::CTX_new() ||
+ die "Failed to create SSL context : $!";
+ $client_certs = 0 if (!$config{'ca'} || !%certs);
+ if ($client_certs) {
+ Net::SSLeay::CTX_load_verify_locations(
+ $ssl_ctx, $config{'ca'}, "");
+ Net::SSLeay::CTX_set_verify(
+ $ssl_ctx, &Net::SSLeay::VERIFY_PEER, \&verify_client);
+ }
+
+ Net::SSLeay::CTX_use_RSAPrivateKey_file(
+ $ssl_ctx, $config{'keyfile'},
+ &Net::SSLeay::FILETYPE_PEM) || die "Failed to open SSL key";
+ Net::SSLeay::CTX_use_certificate_file(
+ $ssl_ctx, $config{'keyfile'},
+ &Net::SSLeay::FILETYPE_PEM);
+ }
+
+# Setup syslog support if possible and if requested
+if ($use_syslog) {
+ eval { openlog("webmin", "cons,pid,ndelay", "daemon") };
+ $use_syslog = 0 if ($@);
+ }
+
+# Read MIME types file and add extra types
+if ($config{"mimetypes"} ne "") {
+ open(MIME, $config{"mimetypes"});
+ while(<MIME>) {
+ chop; s/#.*$//;
+ if (/^(\S+)\s+(.*)$/) {
+ $type = $1; @exts = split(/\s+/, $2);
+ foreach $ext (@exts) {
+ $mime{$ext} = $type;
+ }
+ }
+ }
+ close(MIME);
+ }
+foreach $k (keys %config) {
+ if ($k !~ /^addtype_(.*)$/) { next; }
+ $mime{$1} = $config{$k};
+ }
+
+# get the time zone
+if ($config{'log'}) {
+ local(@gmt, @lct, $days, $hours, $mins);
+ @make_date_marr = ("Jan", "Feb", "Mar", "Apr", "May", "Jun",
+ "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
+ @gmt = gmtime(time());
+ @lct = localtime(time());
+ $days = $lct[3] - $gmt[3];
+ $hours = ($days < -1 ? 24 : 1 < $days ? -24 : $days * 24) +
+ $lct[2] - $gmt[2];
+ $mins = $hours * 60 + $lct[1] - $gmt[1];
+ $timezone = ($mins < 0 ? "-" : "+"); $mins = abs($mins);
+ $timezone .= sprintf "%2.2d%2.2d", $mins/60, $mins%60;
+ }
+
+if ($config{'inetd'}) {
+ # We are being run from inetd - go direct to handling the request
+ $SIG{'HUP'} = 'IGNORE';
+ $SIG{'TERM'} = 'DEFAULT';
+ $SIG{'PIPE'} = 'DEFAULT';
+ open(SOCK, "+>&STDIN");
+
+ # Check if it is time for the logfile to be cleared
+ if ($config{'logclear'}) {
+ local $write_logtime = 0;
+ local @st = stat("$config{'logfile'}.time");
+ if (@st) {
+ if ($st[9]+$config{'logtime'}*60*60 < time()){
+ # need to clear log
+ $write_logtime = 1;
+ unlink($config{'logfile'});
+ }
+ }
+ else { $write_logtime = 1; }
+ if ($write_logtime) {
+ open(LOGTIME, ">$config{'logfile'}.time");
+ print LOGTIME time(),"\n";
+ close(LOGTIME);
+ }
+ }
+
+ # Initialize SSL for this connection
+ if ($use_ssl) {
+ $ssl_con = Net::SSLeay::new($ssl_ctx);
+ Net::SSLeay::set_fd($ssl_con, fileno(SOCK));
+ #Net::SSLeay::use_RSAPrivateKey_file(
+ # $ssl_con, $config{'keyfile'},
+ # &Net::SSLeay::FILETYPE_PEM);
+ #Net::SSLeay::use_certificate_file(
+ # $ssl_con, $config{'keyfile'},
+ # &Net::SSLeay::FILETYPE_PEM);
+ Net::SSLeay::accept($ssl_con) || exit;
+ }
+
+ # Work out the hostname for this web server
+ if (!$config{'host'}) {
+ ($myport, $myaddr) =
+ unpack_sockaddr_in(getsockname(SOCK));
+ $myname = gethostbyaddr($myaddr, AF_INET);
+ if ($myname eq "") {
+ $myname = inet_ntoa($myaddr);
+ }
+ $host = $myname;
+ }
+ else { $host = $config{'host'}; }
+ $port = $config{'port'};
+
+ while(&handle_request(getpeername(SOCK), getsockname(SOCK))) { }
+ close(SOCK);
+ exit;
+ }
+
+# Open main socket
+$proto = getprotobyname('tcp');
+socket(MAIN, PF_INET, SOCK_STREAM, $proto) ||
+ die "Failed to open main socket : $!";
+setsockopt(MAIN, SOL_SOCKET, SO_REUSEADDR, pack("l", 1));
+$baddr = $config{"bind"} ? inet_aton($config{"bind"}) : INADDR_ANY;
+for($i=0; $i<5; $i++) {
+ last if (bind(MAIN, sockaddr_in($config{port}, $baddr)));
+ sleep(1);
+ }
+die "Failed to bind port $config{port} : $!" if ($i == 5);
+listen(MAIN, SOMAXCONN);
+
+if ($config{'listen'}) {
+ # Open the socket that allows other webmin servers to find this one
+ $proto = getprotobyname('udp');
+ if (socket(LISTEN, PF_INET, SOCK_DGRAM, $proto)) {
+ setsockopt(LISTEN, SOL_SOCKET, SO_REUSEADDR, pack("l", 1));
+ bind(LISTEN, sockaddr_in($config{'listen'}, INADDR_ANY));
+ listen(LISTEN, SOMAXCONN);
+ }
+ else {
+ print STDERR "Failed to open listening socket : $!\n";
+ $config{'listen'} = 0;
+ }
+ }
+
+
+# Split from the controlling terminal
+if (fork()) { exit; }
+setsid();
+
+# write out the PID file
+open(PIDFILE, "> $config{'pidfile'}");
+printf PIDFILE "%d\n", getpid();
+close(PIDFILE);
+
+# Start the log-clearing process, if needed. This checks every minute
+# to see if the log has passed its reset time, and if so clears it
+if ($config{'logclear'}) {
+ if (!($logclearer = fork())) {
+ while(1) {
+ local $write_logtime = 0;
+ local @st = stat("$config{'logfile'}.time");
+ if (@st) {
+ if ($st[9]+$config{'logtime'}*60*60 < time()){
+ # need to clear log
+ $write_logtime = 1;
+ unlink($config{'logfile'});
+ }
+ }
+ else { $write_logtime = 1; }
+ if ($write_logtime) {
+ open(LOGTIME, ">$config{'logfile'}.time");
+ print LOGTIME time(),"\n";
+ close(LOGTIME);
+ }
+ sleep(5*60);
+ }
+ exit;
+ }
+ push(@childpids, $logclearer);
+ }
+
+# Setup the logout time dbm if needed
+if ($config{'session'}) {
+ eval "use SDBM_File";
+ dbmopen(%sessiondb, $config{'sessiondb'}, 0700);
+ eval { $sessiondb{'1111111111'} = 'foo bar' };
+ if ($@) {
+ dbmclose(%sessiondb);
+ eval "use NDBM_File";
+ dbmopen(%sessiondb, $config{'sessiondb'}, 0700);
+ }
+ }
+
+# Run the main loop
+$SIG{'HUP'} = 'miniserv::trigger_restart';
+$SIG{'TERM'} = 'miniserv::term_handler';
+$SIG{'PIPE'} = 'IGNORE';
+@deny = &to_ipaddress(split(/\s+/, $config{"deny"}));
+@allow = &to_ipaddress(split(/\s+/, $config{"allow"}));
+$p = 0;
+while(1) {
+ # wait for a new connection, or a message from a child process
+ undef($rmask);
+ vec($rmask, fileno(MAIN), 1) = 1;
+ if ($config{'passdelay'} || $config{'session'}) {
+ for($i=0; $i<@passin; $i++) {
+ vec($rmask, fileno($passin[$i]), 1) = 1;
+ }
+ }
+ vec($rmask, fileno(LISTEN), 1) = 1 if ($config{'listen'});
+
+ local $sel = select($rmask, undef, undef, 10);
+ if ($need_restart) { &restart_miniserv(); }
+ local $time_now = time();
+
+ # Clean up finished processes
+ local($pid);
+ do { $pid = waitpid(-1, WNOHANG);
+ @childpids = grep { $_ != $pid } @childpids;
+ } while($pid > 0);
+
+ # run the unblocking procedure to check if enough time has passed to
+ # unblock hosts that heve been blocked because of password failures
+ if ($config{'blockhost_failures'}) {
+ $i = 0;
+ while ($i <= $#deny) {
+ if ($blockhosttime{$deny[$i]} && $config{'blockhost_time'} != 0 &&
+ ($time_now - $blockhosttime{$deny[$i]}) >= $config{'blockhost_time'}) {
+ # the host can be unblocked now
+ $hostfail{$deny[$i]} = 0;
+ splice(@deny, $i, 1);
+ }
+ $i++;
+ }
+ }
+
+ if ($config{'session'}) {
+ # Remove sessions with more than 7 days of inactivity
+ foreach $s (keys %sessiondb) {
+ local ($user, $ltime) = split(/\s+/, $sessiondb{$s});
+ if ($time_now - $ltime > 7*24*60*60) {
+ delete($sessiondb{$s});
+ }
+ }
+ }
+ next if ($sel <= 0);
+ if (vec($rmask, fileno(MAIN), 1)) {
+ # got new connection
+ $acptaddr = accept(SOCK, MAIN);
+ if (!$acptaddr) { next; }
+
+ # create pipes
+ if ($config{'passdelay'} || $config{'session'}) {
+ $PASSINr = "PASSINr$p"; $PASSINw = "PASSINw$p";
+ $PASSOUTr = "PASSOUTr$p"; $PASSOUTw = "PASSOUTw$p";
+ $p++;
+ pipe($PASSINr, $PASSINw);
+ pipe($PASSOUTr, $PASSOUTw);
+ select($PASSINw); $| = 1; select($PASSINr); $| = 1;
+ select($PASSOUTw); $| = 1; select($PASSOUTw); $| = 1;
+ }
+ select(STDOUT);
+
+ # Check username of connecting user
+ local ($peerp, $peera) = unpack_sockaddr_in($acptaddr);
+ $localauth_user = undef;
+ if ($config{'localauth'} && inet_ntoa($peera) eq "127.0.0.1") {
+ if (open(TCP, "/proc/net/tcp")) {
+ # Get the info direct from the kernel
+ while(<TCP>) {
+ s/^\s+//;
+ local @t = split(/[\s:]+/, $_);
+ if ($t[1] eq '0100007F' &&
+ $t[2] eq sprintf("%4.4X", $peerp)) {
+ $localauth_user = getpwuid($t[11]);
+ last;
+ }
+ }
+ close(TCP);
+ }
+ else {
+ # Call lsof for the info
+ local $lsofpid = open(LSOF,
+ "$config{'localauth'} -i TCP\@127.0.0.1:$peerp |");
+ while(<LSOF>) {
+ if (/^(\S+)\s+(\d+)\s+(\S+)/ &&
+ $2 != $$ && $2 != $lsofpid) {
+ $localauth_user = $3;
+ }
+ }
+ close(LSOF);
+ }
+ }
+
+ # fork the subprocess
+ if (!($handpid = fork())) {
+ # setup signal handlers
+ $SIG{'TERM'} = 'DEFAULT';
+ $SIG{'PIPE'} = 'DEFAULT';
+ #$SIG{'CHLD'} = 'IGNORE';
+ $SIG{'HUP'} = 'IGNORE';
+
+ # Initialize SSL for this connection
+ if ($use_ssl) {
+ $ssl_con = Net::SSLeay::new($ssl_ctx);
+ Net::SSLeay::set_fd($ssl_con, fileno(SOCK));
+ #Net::SSLeay::use_RSAPrivateKey_file(
+ # $ssl_con, $config{'keyfile'},
+ # &Net::SSLeay::FILETYPE_PEM);
+ #Net::SSLeay::use_certificate_file(
+ # $ssl_con, $config{'keyfile'},
+ # &Net::SSLeay::FILETYPE_PEM);
+ Net::SSLeay::accept($ssl_con) || exit;
+ }
+
+ # close useless pipes
+ if ($config{'passdelay'} || $config{'session'}) {
+ foreach $p (@passin) { close($p); }
+ foreach $p (@passout) { close($p); }
+ close($PASSINr); close($PASSOUTw);
+ }
+ close(MAIN);
+
+ # Work out the hostname for this web server
+ if (!$config{'host'}) {
+ ($myport, $myaddr) =
+ unpack_sockaddr_in(getsockname(SOCK));
+ $myname = gethostbyaddr($myaddr, AF_INET);
+ if ($myname eq "") {
+ $myname = inet_ntoa($myaddr);
+ }
+ $host = $myname;
+ }
+ else { $host = $config{'host'}; }
+ $port = $config{'port'};
+
+ local $switched = 0;
+ if ($config{'remoteuser'} && $localauth_user && !$<) {
+ # Switch to the UID of the remote user
+ local @u = getpwnam($localauth_user);
+ if (@u) {
+ $( = $u[3]; $) = "$u[3] $u[3]";
+ $< = $> = $u[2];
+ $switched = 1;
+ }
+ }
+ if ($config{'switchuser'} && !$< && !$switched) {
+ # Switch to the UID of server user
+ local @u = getpwnam($config{'switchuser'});
+ if (@u) {
+ $( = $u[3]; $) = "$u[3] $u[3]";
+ $< = $> = $u[2];
+ }
+ }
+
+ while(&handle_request($acptaddr, getsockname(SOCK))) { }
+ shutdown(SOCK, 1);
+ close(SOCK);
+ close($PASSINw); close($PASSOUTw);
+ exit;
+ }
+ push(@childpids, $handpid);
+ if ($config{'passdelay'} || $config{'session'}) {
+ close($PASSINw); close($PASSOUTr);
+ push(@passin, $PASSINr); push(@passout, $PASSOUTw);
+ }
+ close(SOCK);
+ }
+
+ if ($config{'listen'} && vec($rmask, fileno(LISTEN), 1)) {
+ # Got UDP packet from another webmin server
+ local $rcvbuf;
+ local $from = recv(LISTEN, $rcvbuf, 1024, 0);
+ next if (!$from);
+ local $fromip = inet_ntoa((unpack_sockaddr_in($from))[1]);
+ local $toip = inet_ntoa((unpack_sockaddr_in(
+ getsockname(LISTEN)))[1]);
+ if ((!@deny || !&ip_match($fromip, $toip, @deny)) &&
+ (!@allow || &ip_match($fromip, $toip, @allow))) {
+ send(LISTEN, "$config{'host'}:$config{'port'}:".
+ "$use_ssl", 0, $from);
+ }
+ }
+
+ # check for password-timeout messages from subprocesses
+ for($i=0; $i<@passin; $i++) {
+ if (vec($rmask, fileno($passin[$i]), 1)) {
+ # this sub-process is asking about a password
+ $infd = $passin[$i]; $outfd = $passout[$i];
+ $inline = <$infd>;
+ if ($inline =~ /^delay\s+(\S+)\s+(\S+)\s+(\d+)/) {
+ # Got a delay request from a subprocess.. for
+ # valid logins, there is no delay (to prevent
+ # denial of service attacks), but for invalid
+ # logins the delay increases with each failed
+ # attempt.
+ if ($3) {
+ # login OK.. no delay
+ print $outfd "0 0\n";
+ $hostfail{$2} = 0;
+ }
+ else {
+ # login failed..
+ $hostfail{$2}++;
+ # add the host to the block list if necessary
+ if ($config{'blockhost_failures'} &&
+ $hostfail{$2} >= $config{'blockhost_failures'}) {
+ push(@deny, $2);
+ $blockhosttime{$2} = $time_now;
+ $blocked = 1;
+ if ($use_syslog) {
+ local $logtext = "Security alert: Host $2 ".
+ "blocked after $config{'blockhost_failures'} ".
+ "failed logins for user $1";
+ syslog("crit", $logtext);
+ }
+ }
+ else {
+ $blocked = 0;
+ }
+ $dl = $userdlay{$1} -
+ int(($time_now - $userlast{$1})/50);
+ $dl = $dl < 0 ? 0 : $dl+1;
+ print $outfd "$dl $blocked\n";
+ $userdlay{$1} = $dl;
+ }
+ $userlast{$1} = $time_now;
+ }
+ elsif ($inline =~ /^verify\s+(\S+)/) {
+ # Verifying a session ID
+ local $session_id = $1;
+ if (!defined($sessiondb{$session_id})) {
+ print $outfd "0 0\n";
+ }
+ else {
+ local ($user, $ltime) = split(/\s+/, $sessiondb{$session_id});
+ if ($config{'logouttime'} &&
+ $time_now - $ltime > $config{'logouttime'}*60) {
+ print $outfd "1 ",$time_now - $ltime,"\n";
+ delete($sessiondb{$session_id});
+ }
+ else {
+ print $outfd "2 $user\n";
+ $sessiondb{$session_id} = "$user $time_now";
+ }
+ }
+ }
+ elsif ($inline =~ /^new\s+(\S+)\s+(\S+)/) {
+ # Creating a new session
+ $sessiondb{$1} = "$2 $time_now";
+ }
+ elsif ($inline =~ /^delete\s+(\S+)/) {
+ # Logging out a session
+ print $outfd $sessiondb{$1} ? 1 : 0,"\n";
+ delete($sessiondb{$1});
+ }
+ else {
+ # close pipe
+ close($infd); close($outfd);
+ $passin[$i] = $passout[$i] = undef;
+ }
+ }
+ }
+ @passin = grep { defined($_) } @passin;
+ @passout = grep { defined($_) } @passout;
+ }
+
+# handle_request(remoteaddress, localaddress)
+# Where the real work is done
+sub handle_request
+{
+$acptip = inet_ntoa((unpack_sockaddr_in($_[0]))[1]);
+$localip = $_[1] ? inet_ntoa((unpack_sockaddr_in($_[1]))[1]) : undef;
+if ($config{'loghost'}) {
+ $acpthost = gethostbyaddr(inet_aton($acptip), AF_INET);
+ $acpthost = $acptip if (!$acpthost);
+ }
+else {
+ $acpthost = $acptip;
+ }
+$datestr = &http_date(time());
+$ok_code = 200;
+$ok_message = "Document follows";
+
+# Wait at most 60 secs for start of headers (but only for the first time)
+if (!$checked_timeout) {
+ local $rmask;
+ vec($rmask, fileno(SOCK), 1) = 1;
+ local $sel = select($rmask, undef, undef, 60);
+ $sel || &http_error(400, "Timeout");
+ $checked_timeout++;
+ }
+
+# Read the HTTP request and headers
+($reqline = &read_line()) =~ s/\r|\n//g;
+if (!($reqline =~ /^(GET|POST|HEAD)\s+(.*)\s+HTTP\/1\..$/)) {
+ &http_error(400, "Bad Request");
+ }
+$method = $1; $request_uri = $page = $2;
+%header = ();
+local $lastheader;
+while(1) {
+ ($headline = &read_line()) =~ s/\r|\n//g;
+ last if ($headline eq "");
+ if ($headline =~ /^(\S+):\s+(.*)$/) {
+ $header{$lastheader = lc($1)} = $2;
+ }
+ elsif ($headline =~ /^\s+(.*)$/) {
+ $header{$lastheader} .= $headline;
+ }
+ else {
+ &http_error(400, "Bad Header $headline");
+ }
+ }
+if (defined($header{'host'})) {
+ if ($header{'host'} =~ /^([^:]+):([0-9]+)$/) { $host = $1; $port = $2; }
+ else { $host = $header{'host'}; }
+ }
+undef(%in);
+if ($page =~ /^([^\?]+)\?(.*)$/) {
+ # There is some query string information
+ $page = $1;
+ $querystring = $2;
+ if ($querystring !~ /=/) {
+ $queryargs = $querystring;
+ $queryargs =~ s/\+/ /g;
+ $queryargs =~ s/%(..)/pack("c",hex($1))/ge;
+ $querystring = "";
+ }
+ else {
+ # Parse query-string parameters
+ local @in = split(/\&/, $querystring);
+ foreach $i (@in) {
+ local ($k, $v) = split(/=/, $i, 2);
+ $k =~ s/\+/ /g; $k =~ s/%(..)/pack("c",hex($1))/ge;
+ $v =~ s/\+/ /g; $v =~ s/%(..)/pack("c",hex($1))/ge;
+ $in{$k} = $v;
+ }
+ }
+ }
+$posted_data = undef;
+if ($method eq 'POST' &&
+ $header{'content-type'} eq 'application/x-www-form-urlencoded') {
+ # Read in posted query string information
+ $clen = $header{"content-length"};
+ while(length($posted_data) < $clen) {
+ $buf = &read_data($clen - length($posted_data));
+ if (!length($buf)) {
+ &http_error(500, "Failed to read POST request");
+ }
+ $posted_data .= $buf;
+ }
+ local @in = split(/\&/, $posted_data);
+ foreach $i (@in) {
+ local ($k, $v) = split(/=/, $i, 2);
+ $k =~ s/\+/ /g; $k =~ s/%(..)/pack("c",hex($1))/ge;
+ $v =~ s/\+/ /g; $v =~ s/%(..)/pack("c",hex($1))/ge;
+ $in{$k} = $v;
+ }
+ }
+
+# replace %XX sequences in page
+$page =~ s/%(..)/pack("c",hex($1))/ge;
+
+# check address against access list
+if (@deny && &ip_match($acptip, $localip, @deny) ||
+ @allow && !&ip_match($acptip, $localip, @allow)) {
+ &http_error(403, "Access denied for $acptip");
+ return 0;
+ }
+
+if ($use_libwrap) {
+ # Check address with TCP-wrappers
+ if (!hosts_ctl("webmin", STRING_UNKNOWN, $acptip, STRING_UNKNOWN)) {
+ &http_error(403, "Access denied for $acptip");
+ return 0;
+ }
+ }
+
+# check for the logout flag file, and if existant deny authentication
+if ($config{'logout'} && -r $config{'logout'}.$in{'miniserv_logout_id'}) {
+ $deny_authentication++;
+ open(LOGOUT, $config{'logout'}.$in{'miniserv_logout_id'});
+ chop($count = <LOGOUT>);
+ close(LOGOUT);
+ $count--;
+ if ($count > 0) {
+ open(LOGOUT, ">$config{'logout'}$in{'miniserv_logout_id'}");
+ print LOGOUT "$count\n";
+ close(LOGOUT);
+ }
+ else {
+ unlink($config{'logout'}.$in{'miniserv_logout_id'});
+ }
+ }
+
+# Check for password if needed
+if (%users) {
+ $validated = 0;
+ $blocked = 0;
+
+ # Session authentication is never used for connections by
+ # another webmin server
+ if ($header{'user-agent'} =~ /webmin/i) {
+ $config{'session'} = 0;
+ }
+
+ # check for SSL authentication
+ if ($use_ssl && $verified_client) {
+ $peername = Net::SSLeay::X509_NAME_oneline(
+ Net::SSLeay::X509_get_subject_name(
+ Net::SSLeay::get_peer_certificate(
+ $ssl_con)));
+ foreach $u (keys %certs) {
+ if ($certs{$u} eq $peername) {
+ $authuser = $u;
+ $validated = 2;
+ last;
+ }
+ }
+ }
+
+ # Check for normal HTTP authentication
+ if (!$validated && !$deny_authentication && !$config{'session'} &&
+ $header{authorization} =~ /^basic\s+(\S+)$/i) {
+ # authorization given..
+ ($authuser, $authpass) = split(/:/, &b64decode($1));
+ $validated = &validate_user($authuser, $authpass);
+
+ if ($config{'passdelay'} && !$config{'inetd'}) {
+ # check with main process for delay
+ print $PASSINw "delay $authuser $acptip $validated\n";
+ <$PASSOUTr> =~ /(\d+) (\d+)/;
+ $blocked = $2;
+ sleep($1);
+ }
+ }
+
+ # Check for new session validation
+ if ($config{'session'} && !$deny_authentication && $page eq $config{'session_login'}) {
+ local $ok = &validate_user($in{'user'}, $in{'pass'});
+
+ # check if the test cookie is set
+ if ($header{'cookie'} !~ /testing=1/ && $in{'user'}) {
+ &http_error(500, "No cookies",
+ "Your browser does not support cookies, ".
+ "which are required for Webmin to work in ".
+ "session authentication mode");
+ }
+
+ # check with main process for delay
+ if ($config{'passdelay'} && $in{'user'}) {
+ print $PASSINw "delay $in{'user'} $acptip $ok\n";
+ <$PASSOUTr> =~ /(\d+) (\d+)/;
+ $blocked = $2;
+ sleep($1);
+ }
+
+ if ($ok) {
+ # Logged in OK! Tell the main process about the new SID
+ local $sid = time();
+ local $mul = 1;
+ foreach $c (split(//, crypt($in{'pass'}, substr($$, -2)))) {
+ $sid += ord($c) * $mul;
+ $mul *= 3;
+ }
+ print $PASSINw "new $sid $in{'user'}\n";
+
+ # Set cookie and redirect
+ &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
+ &write_data("Date: $datestr\r\n");
+ &write_data("Server: $config{'server'}\r\n");
+ $portstr = $port == 80 && !$use_ssl ? "" :
+ $port == 443 && $use_ssl ? "" : ":$port";
+ $prot = $use_ssl ? "https" : "http";
+ if ($in{'save'}) {
+ &write_data("Set-Cookie: sid=$sid; path=/; expires=\"Fri, 1-Jan-2038 00:00:01\"\r\n");
+ }
+ else {
+ &write_data("Set-Cookie: sid=$sid; path=/\r\n");
+ }
+ &write_data("Location: $prot://$host$portstr$in{'page'}\r\n");
+ &write_keep_alive(0);
+ &write_data("\r\n");
+ &log_request($acpthost, $authuser, $reqline, 302, 0);
+ return 0;
+ }
+ elsif ($in{'logout'} && $header{'cookie'} =~ /sid=(\d+)/) {
+ # Logout clicked .. remove the session
+ print $PASSINw "delete $1\n";
+ local $dummy = <$PASSINr>;
+ $logout = 1;
+ $already_session_id = undef;
+ }
+ else {
+ # Login failed .. display the form again
+ $failed_user = $in{'user'};
+ $request_uri = $in{'page'};
+ $already_session_id = undef;
+ }
+ }
+
+ # Check for an existing session
+ if ($config{'session'} && !$validated) {
+ if ($already_session_id) {
+ $session_id = $already_session_id;
+ $authuser = $already_authuser;
+ $validated = 1;
+ }
+ elsif (!$deny_authentication && $header{'cookie'} =~ /sid=(\d+)/) {
+ $session_id = $1;
+ print $PASSINw "verify $session_id\n";
+ <$PASSOUTr> =~ /(\d+)\s+(\S+)/;
+ if ($1 == 2) {
+ # Valid session continuation
+ $validated = 1;
+ $authuser = $2;
+ $already_session_id = $session_id;
+ $already_authuser = $authuser;
+ }
+ elsif ($1 == 1) {
+ # Session timed out
+ $timed_out = $2;
+ }
+ else {
+ # Invalid session ID .. don't set verified
+ }
+ }
+ }
+
+ # Check for local authentication
+ if ($localauth_user) {
+ if (defined($users{$localauth_user})) {
+ $validated = 1;
+ $authuser = $localauth_user;
+ }
+ else {
+ $localauth_user = undef;
+ }
+ }
+
+ if (!$validated) {
+ if ($blocked == 0) {
+ # No password given.. ask
+ if ($config{'session'}) {
+ # Force CGI for session login
+ $validated = 1;
+ if ($logout) {
+ $querystring .= "&logout=1&page=/";
+ }
+ else {
+ $querystring = "page=".&urlize($request_uri);
+ }
+ $querystring .= "&failed=$failed_user" if ($failed_user);
+ $querystring .= "&timed_out=$timed_out" if ($timed_out);
+ $queryargs = "";
+ $page = $config{'session_login'};
+ }
+ else {
+ # Ask for login with HTTP authentication
+ &write_data("HTTP/1.0 401 Unauthorized\r\n");
+ &write_data("Date: $datestr\r\n");
+ &write_data("Server: $config{'server'}\r\n");
+ &write_data("WWW-authenticate: Basic ".
+ "realm=\"$config{'realm'}\"\r\n");
+ &write_keep_alive(0);
+ &write_data("Content-type: text/html\r\n");
+ &write_data("\r\n");
+ &reset_byte_count();
+ &write_data("<html>\n");
+ &write_data("<head><title>Unauthorized</title></head>\n");
+ &write_data("<body><h1>Unauthorized</h1>\n");
+ &write_data("A password is required to access this\n");
+ &write_data("web server. Please try again. <p>\n");
+ &write_data("</body></html>\n");
+ &log_request($acpthost, undef, $reqline, 401, &byte_count());
+ return 0;
+ }
+ }
+ else {
+ # when the host has been blocked, give it an error message
+ &http_error(403, "Access denied for $acptip. The host has been blocked "
+ ."because of too many authentication failures.");
+ }
+ }
+
+ # Check per-user IP access control
+ if ($deny{$authuser} && &ip_match($acptip, $localip, @{$deny{$authuser}}) ||
+ $allow{$authuser} && !&ip_match($acptip, $localip, @{$allow{$authuser}})) {
+ &http_error(403, "Access denied for $acptip");
+ return 0;
+ }
+ }
+
+# Figure out what kind of page was requested
+rerun:
+$simple = &simplify_path($page, $bogus);
+$simple =~ s/[\000-\037]//g;
+if ($bogus) {
+ &http_error(400, "Invalid path");
+ }
+undef($full);
+if ($config{'preroot'}) {
+ # Look in the template root directory first
+ $is_directory = 1;
+ $sofar = "";
+ $full = $config{"preroot"} . $sofar;
+ $scriptname = $simple;
+ foreach $b (split(/\//, $simple)) {
+ if ($b ne "") { $sofar .= "/$b"; }
+ $full = $config{"preroot"} . $sofar;
+ @st = stat($full);
+ if (!@st) { undef($full); last; }
+
+ # Check if this is a directory
+ if (-d $full) {
+ # It is.. go on parsing
+ $is_directory = 1;
+ next;
+ }
+ else { $is_directory = 0; }
+
+ # Check if this is a CGI program
+ if (&get_type($full) eq "internal/cgi") {
+ $pathinfo = substr($simple, length($sofar));
+ $pathinfo .= "/" if ($page =~ /\/$/);
+ $scriptname = $sofar;
+ last;
+ }
+ }
+ if ($full) {
+ if ($sofar eq '') {
+ $cgi_pwd = $config{'root'};
+ }
+ else {
+ "$config{'root'}$sofar" =~ /^(.*\/)[^\/]+$/;
+ $cgi_pwd = $1;
+ }
+ if ($is_directory) {
+ # Check for index files in the directory
+ foreach $idx (split(/\s+/, $config{"index_docs"})) {
+ $idxfull = "$full/$idx";
+ if (-r $idxfull && !(-d $idxfull)) {
+ $full = $idxfull;
+ $is_directory = 0;
+ $scriptname .= "/"
+ if ($scriptname ne "/");
+ last;
+ }
+ }
+ }
+ }
+ }
+if (!$full || $is_directory) {
+ $sofar = "";
+ $full = $config{"root"} . $sofar;
+ $scriptname = $simple;
+ foreach $b (split(/\//, $simple)) {
+ if ($b ne "") { $sofar .= "/$b"; }
+ $full = $config{"root"} . $sofar;
+ @st = stat($full);
+ if (!@st) { &http_error(404, "File not found"); }
+
+ # Check if this is a directory
+ if (-d $full) {
+ # It is.. go on parsing
+ next;
+ }
+
+ # Check if this is a CGI program
+ if (&get_type($full) eq "internal/cgi") {
+ $pathinfo = substr($simple, length($sofar));
+ $pathinfo .= "/" if ($page =~ /\/$/);
+ $scriptname = $sofar;
+ last;
+ }
+ }
+ $full =~ /^(.*\/)[^\/]+$/; $cgi_pwd = $1;
+ }
+
+# check filename against denyfile regexp
+local $denyfile = $config{'denyfile'};
+if ($denyfile && $full =~ /$denyfile/) {
+ &http_error(403, "Access denied to $page");
+ return 0;
+ }
+
+# Reached the end of the path OK.. see what we've got
+if (-d $full) {
+ # See if the URL ends with a / as it should
+ if ($page !~ /\/$/) {
+ # It doesn't.. redirect
+ &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
+ $portstr = $port == 80 && !$use_ssl ? "" :
+ $port == 443 && $use_ssl ? "" : ":$port";
+ &write_data("Date: $datestr\r\n");
+ &write_data("Server: $config{server}\r\n");
+ $prot = $use_ssl ? "https" : "http";
+ &write_data("Location: $prot://$host$portstr$page/\r\n");
+ &write_keep_alive(0);
+ &write_data("\r\n");
+ &log_request($acpthost, $authuser, $reqline, 302, 0);
+ return 0;
+ }
+ # A directory.. check for index files
+ foreach $idx (split(/\s+/, $config{"index_docs"})) {
+ $idxfull = "$full/$idx";
+ if (-r $idxfull && !(-d $idxfull)) {
+ $cgi_pwd = $full;
+ $full = $idxfull;
+ $scriptname .= "/" if ($scriptname ne "/");
+ last;
+ }
+ }
+ }
+if (-d $full) {
+ # This is definately a directory.. list it
+ &write_data("HTTP/1.0 $ok_code $ok_message\r\n");
+ &write_data("Date: $datestr\r\n");
+ &write_data("Server: $config{server}\r\n");
+ &write_data("Content-type: text/html\r\n");
+ &write_keep_alive(0);
+ &write_data("\r\n");
+ &reset_byte_count();
+ &write_data("<h1>Index of $simple</h1>\n");
+ &write_data("<pre>\n");
+ &write_data(sprintf "%-35.35s %-20.20s %-10.10s\n",
+ "Name", "Last Modified", "Size");
+ &write_data("<hr>\n");
+ opendir(DIR, $full);
+ while($df = readdir(DIR)) {
+ if ($df =~ /^\./) { next; }
+ (@stbuf = stat("$full/$df")) || next;
+ if (-d "$full/$df") { $df .= "/"; }
+ @tm = localtime($stbuf[9]);
+ $fdate = sprintf "%2.2d/%2.2d/%4.4d %2.2d:%2.2d:%2.2d",
+ $tm[3],$tm[4]+1,$tm[5]+1900,
+ $tm[0],$tm[1],$tm[2];
+ $len = length($df); $rest = " "x(35-$len);
+ &write_data(sprintf
+ "<a href=\"%s\">%-${len}.${len}s</a>$rest %-20.20s %-10.10s\n",
+ $df, $df, $fdate, $stbuf[7]);
+ }
+ closedir(DIR);
+ &log_request($acpthost, $authuser, $reqline, $ok_code, &byte_count());
+ return 0;
+ }
+
+# CGI or normal file
+local $rv;
+if (&get_type($full) eq "internal/cgi") {
+ # A CGI program to execute
+ $envtz = $ENV{"TZ"};
+ $envuser = $ENV{"USER"};
+ $envpath = $ENV{"PATH"};
+ foreach (keys %ENV) { delete($ENV{$_}); }
+ $ENV{"PATH"} = $envpath if ($envpath);
+ $ENV{"TZ"} = $envtz if ($envtz);
+ $ENV{"USER"} = $envuser if ($envuser);
+ $ENV{"HOME"} = $user_homedir;
+ $ENV{"SERVER_SOFTWARE"} = $config{"server"};
+ $ENV{"SERVER_NAME"} = $host;
+ $ENV{"SERVER_ADMIN"} = $config{"email"};
+ $ENV{"SERVER_ROOT"} = $config{"root"};
+ $ENV{"SERVER_PORT"} = $port;
+ $ENV{"REMOTE_HOST"} = $acpthost;
+ $ENV{"REMOTE_ADDR"} = $acptip;
+ $ENV{"REMOTE_USER"} = $authuser if (defined($authuser));
+ $ENV{"SSL_USER"} = $peername if ($validated == 2);
+ $ENV{"DOCUMENT_ROOT"} = $config{"root"};
+ $ENV{"GATEWAY_INTERFACE"} = "CGI/1.1";
+ $ENV{"SERVER_PROTOCOL"} = "HTTP/1.0";
+ $ENV{"REQUEST_METHOD"} = $method;
+ $ENV{"SCRIPT_NAME"} = $scriptname;
+ $ENV{"REQUEST_URI"} = $request_uri;
+ $ENV{"PATH_INFO"} = $pathinfo;
+ $ENV{"PATH_TRANSLATED"} = "$config{root}/$pathinfo";
+ $ENV{"QUERY_STRING"} = $querystring;
+ $ENV{"MINISERV_CONFIG"} = $conf;
+ $ENV{"HTTPS"} = "ON" if ($use_ssl);
+ $ENV{"SESSION_ID"} = $session_id if ($session_id);
+ $ENV{"LOCAL_USER"} = $localauth_user if ($localauth_user);
+ if (defined($header{"content-length"})) {
+ $ENV{"CONTENT_LENGTH"} = $header{"content-length"};
+ }
+ if (defined($header{"content-type"})) {
+ $ENV{"CONTENT_TYPE"} = $header{"content-type"};
+ }
+ foreach $h (keys %header) {
+ ($hname = $h) =~ tr/a-z/A-Z/;
+ $hname =~ s/\-/_/g;
+ $ENV{"HTTP_$hname"} = $header{$h};
+ }
+ $ENV{"PWD"} = $cgi_pwd;
+ foreach $k (keys %config) {
+ if ($k =~ /^env_(\S+)$/) {
+ $ENV{$1} = $config{$k};
+ }
+ }
+ delete($ENV{'HTTP_AUTHORIZATION'});
+ $ENV{'HTTP_COOKIE'} =~ s/;?\s*sid=(\d+)//;
+
+ # Check if the CGI can be handled internally
+ open(CGI, $full);
+ local $first = <CGI>;
+ close(CGI);
+ $first =~ s/[#!\r\n]//g;
+ $nph_script = ($full =~ /\/nph-([^\/]+)$/);
+ if (!$config{'forkcgis'} && $first eq $perl_path && $] >= 5.004) {
+ # setup environment for eval
+ chdir($ENV{"PWD"});
+ @ARGV = split(/\s+/, $queryargs);
+ $0 = $full;
+ if ($posted_data) {
+ # Already read the post input
+ $postinput = $posted_data;
+ }
+ elsif ($method eq "POST") {
+ $clen = $header{"content-length"};
+ while(length($postinput) < $clen) {
+ $buf = &read_data($clen - length($postinput));
+ if (!length($buf)) {
+ &http_error(500, "Failed to read ".
+ "POST request");
+ }
+ $postinput .= $buf;
+ }
+ }
+ $SIG{'CHLD'} = 'DEFAULT';
+ eval {
+ # Have SOCK closed if the perl exec's something
+ use Fcntl;
+ fcntl(SOCK, F_SETFD, FD_CLOEXEC);
+ };
+ shutdown(SOCK, 0);
+
+ if ($config{'log'}) {
+ open(MINISERVLOG, ">>$config{'logfile'}");
+ chmod(0600, $config{'logfile'});
+ }
+ $doing_eval = 1;
+ eval {
+ package main;
+ tie(*STDOUT, 'miniserv');
+ tie(*STDIN, 'miniserv');
+ do $miniserv::full;
+ die $@ if ($@);
+ };
+ $doing_eval = 0;
+ if ($@) {
+ # Error in perl!
+ &http_error(500, "Perl execution failed", $@);
+ }
+ elsif (!$doneheaders && !$nph_script) {
+ &http_error(500, "Missing Headers");
+ }
+ #close(SOCK);
+ $rv = 0;
+ }
+ else {
+ # fork the process that actually executes the CGI
+ pipe(CGIINr, CGIINw);
+ pipe(CGIOUTr, CGIOUTw);
+ pipe(CGIERRr, CGIERRw);
+ if (!($cgipid = fork())) {
+ chdir($ENV{"PWD"});
+ close(SOCK);
+ open(STDIN, "<&CGIINr");
+ open(STDOUT, ">&CGIOUTw");
+ open(STDERR, ">&CGIERRw");
+ close(CGIINw); close(CGIOUTr); close(CGIERRr);
+ exec($full, split(/\s+/, $queryargs));
+ print STDERR "Failed to exec $full : $!\n";
+ exit;
+ }
+ close(CGIINr); close(CGIOUTw); close(CGIERRw);
+
+ # send post data
+ if ($posted_data) {
+ # already read the posted data
+ print CGIINw $posted_data;
+ }
+ elsif ($method eq "POST") {
+ $got = 0; $clen = $header{"content-length"};
+ while($got < $clen) {
+ $buf = &read_data($clen-$got);
+ if (!length($buf)) {
+ kill('TERM', $cgipid);
+ &http_error(500, "Failed to read ".
+ "POST request");
+ }
+ $got += length($buf);
+ print CGIINw $buf;
+ }
+ }
+ close(CGIINw);
+ shutdown(SOCK, 0);
+
+ if (!$nph_script) {
+ # read back cgi headers
+ select(CGIOUTr); $|=1; select(STDOUT);
+ $got_blank = 0;
+ while(1) {
+ $line = <CGIOUTr>;
+ $line =~ s/\r|\n//g;
+ if ($line eq "") {
+ if ($got_blank || %cgiheader) { last; }
+ $got_blank++;
+ next;
+ }
+ ($line =~ /^(\S+):\s+(.*)$/) ||
+ &http_error(500, "Bad Header",
+ &read_errors(CGIERRr));
+ $cgiheader{lc($1)} = $2;
+ }
+ if ($cgiheader{"location"}) {
+ &write_data("HTTP/1.0 302 Moved Temporarily\r\n");
+ &write_data("Date: $datestr\r\n");
+ &write_data("Server: $config{'server'}\r\n");
+ &write_keep_alive(0);
+ # ignore the rest of the output. This is a hack, but
+ # is necessary for IE in some cases :(
+ close(CGIOUTr); close(CGIERRr);
+ }
+ elsif ($cgiheader{"content-type"} eq "") {
+ &http_error(500, "Missing Content-Type Header",
+ &read_errors(CGIERRr));
+ }
+ else {
+ &write_data("HTTP/1.0 $ok_code $ok_message\r\n");
+ &write_data("Date: $datestr\r\n");
+ &write_data("Server: $config{'server'}\r\n");
+ &write_keep_alive(0);
+ }
+ foreach $h (keys %cgiheader) {
+ &write_data("$h: $cgiheader{$h}\r\n");
+ }
+ &write_data("\r\n");
+ }
+ &reset_byte_count();
+ while($line = <CGIOUTr>) {
+ &write_data($line);
+ }
+ close(CGIOUTr); close(CGIERRr);
+ $rv = 0;
+ }
+ }
+else {
+ # A file to output
+ local @st = stat($full);
+ open(FILE, $full) || &http_error(404, "Failed to open file");
+ &write_data("HTTP/1.0 $ok_code $ok_message\r\n");
+ &write_data("Date: $datestr\r\n");
+ &write_data("Server: $config{server}\r\n");
+ &write_data("Content-type: ".&get_type($full)."\r\n");
+ &write_data("Content-length: $st[7]\r\n");
+ &write_data("Last-Modified: ".&http_date($st[9])."\r\n");
+ &write_keep_alive();
+ &write_data("\r\n");
+ &reset_byte_count();
+ while(read(FILE, $buf, 1024) > 0) {
+ &write_data($buf);
+ }
+ close(FILE);
+ $rv = &check_keep_alive();
+ }
+
+# log the request
+&log_request($acpthost, $authuser, $reqline,
+ $cgiheader{"location"} ? "302" : $ok_code, &byte_count());
+return $rv;
+}
+
+# http_error(code, message, body, [dontexit])
+sub http_error
+{
+close(CGIOUT);
+local $eh = $error_handler_recurse ? undef :
+ $config{"error_handler_$_[0]"} ? $config{"error_handler_$_[0]"} :
+ $config{'error_handler'} ? $config{'error_handler'} : undef;
+if ($eh) {
+ # Call a CGI program for the error
+ $page = "/$eh";
+ $querystring = "code=$_[0]&message=".&urlize($_[1]).
+ "&body=".&urlize($_[2]);
+ $error_handler_recurse++;
+ $ok_code = $_[0];
+ $ok_message = $_[1];
+ goto rerun;
+ }
+else {
+ # Use the standard error message display
+ &write_data("HTTP/1.0 $_[0] $_[1]\r\n");
+ &write_data("Server: $config{server}\r\n");
+ &write_data("Date: $datestr\r\n");
+ &write_data("Content-type: text/html\r\n");
+ &write_keep_alive(0);
+ &write_data("\r\n");
+ &reset_byte_count();
+ &write_data("<h1>Error - $_[1]</h1>\n");
+ if ($_[2]) {
+ &write_data("<pre>$_[2]</pre>\n");
+ }
+ }
+&log_request($acpthost, $authuser, $reqline, $_[0], &byte_count())
+ if ($reqline);
+shutdown(SOCK, 1);
+exit if (!$_[3]);
+}
+
+sub get_type
+{
+if ($_[0] =~ /\.([A-z0-9]+)$/) {
+ $t = $mime{$1};
+ if ($t ne "") {
+ return $t;
+ }
+ }
+return "text/plain";
+}
+
+# simplify_path(path, bogus)
+# Given a path, maybe containing stuff like ".." and "." convert it to a
+# clean, absolute form.
+sub simplify_path
+{
+local($dir, @bits, @fixedbits, $b);
+$dir = $_[0];
+$dir =~ s/^\/+//g;
+$dir =~ s/\/+$//g;
+@bits = split(/\/+/, $dir);
+@fixedbits = ();
+$_[1] = 0;
+foreach $b (@bits) {
+ if ($b eq ".") {
+ # Do nothing..
+ }
+ elsif ($b eq "..") {
+ # Remove last dir
+ if (scalar(@fixedbits) == 0) {
+ $_[1] = 1;
+ return "/";
+ }
+ pop(@fixedbits);
+ }
+ else {
+ # Add dir to list
+ push(@fixedbits, $b);
+ }
+ }
+return "/" . join('/', @fixedbits);
+}
+
+# b64decode(string)
+# Converts a string from base64 format to normal
+sub b64decode
+{
+ local($str) = $_[0];
+ local($res);
+ $str =~ tr|A-Za-z0-9+=/||cd;
+ $str =~ s/=+$//;
+ $str =~ tr|A-Za-z0-9+/| -_|;
+ while ($str =~ /(.{1,60})/gs) {
+ my $len = chr(32 + length($1)*3/4);
+ $res .= unpack("u", $len . $1 );
+ }
+ return $res;
+}
+
+# ip_match(remoteip, localip, [match]+)
+# Checks an IP address against a list of IPs, networks and networks/masks
+sub ip_match
+{
+local(@io, @mo, @ms, $i, $j);
+@io = split(/\./, $_[0]);
+local $hn;
+if (!defined($hn = $ip_match_cache{$_[0]})) {
+ $hn = gethostbyaddr(inet_aton($_[0]), AF_INET);
+ $hn = "" if ((&to_ipaddress($hn))[0] ne $_[0]);
+ $ip_match_cache{$_[0]} = $hn;
+ }
+for($i=2; $i<@_; $i++) {
+ local $mismatch = 0;
+ if ($_[$i] =~ /^(\S+)\/(\S+)$/) {
+ # Compare with network/mask
+ @mo = split(/\./, $1); @ms = split(/\./, $2);
+ for($j=0; $j<4; $j++) {
+ if ((int($io[$j]) & int($ms[$j])) != int($mo[$j])) {
+ $mismatch = 1;
+ }
+ }
+ }
+ elsif ($_[$i] =~ /^\*(\S+)$/) {
+ # Compare with hostname regexp
+ $mismatch = 1 if ($hn !~ /$1$/);
+ }
+ elsif ($_[$i] eq 'LOCAL') {
+ # Compare with local network
+ local @lo = split(/\./, $_[1]);
+ if ($lo[0] < 128) {
+ $mismatch = 1 if ($lo[0] != $io[0]);
+ }
+ elsif ($lo[0] < 192) {
+ $mismatch = 1 if ($lo[0] != $io[0] ||
+ $lo[1] != $io[1]);
+ }
+ else {
+ $mismatch = 1 if ($lo[0] != $io[0] ||
+ $lo[1] != $io[1] ||
+ $lo[2] != $io[2]);
+ }
+ }
+ else {
+ # Compare with IP or network
+ @mo = split(/\./, $_[$i]);
+ while(@mo && !$mo[$#mo]) { pop(@mo); }
+ for($j=0; $j<@mo; $j++) {
+ if ($mo[$j] != $io[$j]) {
+ $mismatch = 1;
+ }
+ }
+ }
+ return 1 if (!$mismatch);
+ }
+return 0;
+}
+
+# restart_miniserv()
+# Called when a SIGHUP is received to restart the web server. This is done
+# by exec()ing perl with the same command line as was originally used
+sub restart_miniserv
+{
+close(SOCK); close(MAIN);
+foreach $p (@passin) { close($p); }
+foreach $p (@passout) { close($p); }
+if ($logclearer) { kill('TERM', $logclearer); }
+exec($perl_path, $miniserv_path, @miniserv_argv);
+die "Failed to restart miniserv with $perl_path $miniserv_path";
+}
+
+sub trigger_restart
+{
+$need_restart = 1;
+}
+
+sub to_ipaddress
+{
+local (@rv, $i);
+foreach $i (@_) {
+ if ($i =~ /(\S+)\/(\S+)/ || $i =~ /^\*\S+$/ ||
+ $i eq 'LOCAL') { push(@rv, $i); }
+ else { push(@rv, join('.', unpack("CCCC", inet_aton($i)))); }
+ }
+return @rv;
+}
+
+# read_line()
+# Reads one line from SOCK or SSL
+sub read_line
+{
+local($idx, $more, $rv);
+if ($use_ssl) {
+ while(($idx = index($read_buffer, "\n")) < 0) {
+ # need to read more..
+ if (!($more = Net::SSLeay::read($ssl_con))) {
+ # end of the data
+ $rv = $read_buffer;
+ undef($read_buffer);
+ return $rv;
+ }
+ $read_buffer .= $more;
+ }
+ $rv = substr($read_buffer, 0, $idx+1);
+ $read_buffer = substr($read_buffer, $idx+1);
+ return $rv;
+ }
+else { return <SOCK>; }
+}
+
+# read_data(length)
+# Reads up to some amount of data from SOCK or the SSL connection
+sub read_data
+{
+if ($use_ssl) {
+ local($rv);
+ if (length($read_buffer)) {
+ $rv = $read_buffer;
+ undef($read_buffer);
+ return $rv;
+ }
+ else {
+ return Net::SSLeay::read($ssl_con, $_[0]);
+ }
+ }
+else {
+ local $buf;
+ read(SOCK, $buf, $_[0]) || return undef;
+ return $buf;
+ }
+}
+
+# write_data(data)
+# Writes a string to SOCK or the SSL connection
+sub write_data
+{
+if ($use_ssl) {
+ Net::SSLeay::write($ssl_con, $_[0]);
+ }
+else {
+ syswrite(SOCK, $_[0], length($_[0]));
+ }
+$write_data_count += length($_[0]);
+}
+
+# reset_byte_count()
+sub reset_byte_count { $write_data_count = 0; }
+
+# byte_count()
+sub byte_count { return $write_data_count; }
+
+# log_request(hostname, user, request, code, bytes)
+sub log_request
+{
+if ($config{'log'}) {
+ local(@tm, $dstr, $user, $ident, $headers);
+ if ($config{'logident'}) {
+ # add support for rfc1413 identity checking here
+ }
+ else { $ident = "-"; }
+ @tm = localtime(time());
+ $dstr = sprintf "%2.2d/%s/%4.4d:%2.2d:%2.2d:%2.2d %s",
+ $tm[3], $make_date_marr[$tm[4]], $tm[5]+1900,
+ $tm[2], $tm[1], $tm[0], $timezone;
+ $user = $_[1] ? $_[1] : "-";
+ if (fileno(MINISERVLOG)) {
+ seek(MINISERVLOG, 0, 2);
+ }
+ else {
+ open(MINISERVLOG, ">>$config{'logfile'}");
+ chmod(0600, $config{'logfile'});
+ }
+ foreach $h (split(/\s+/, $config{'logheaders'})) {
+ $headers .= " $h=\"$header{$h}\"";
+ }
+ print MINISERVLOG "$_[0] $ident $user [$dstr] \"$_[2]\" ",
+ "$_[3] $_[4]$headers\n";
+ close(MINISERVLOG);
+ }
+}
+
+# read_errors(handle)
+# Read and return all input from some filehandle
+sub read_errors
+{
+local($fh, $_, $rv);
+$fh = $_[0];
+while(<$fh>) { $rv .= $_; }
+return $rv;
+}
+
+sub write_keep_alive
+{
+local $mode;
+if (@_) { $mode = $_[0]; }
+else { $mode = &check_keep_alive(); }
+&write_data("Connection: ".($mode ? "Keep-Alive" : "close")."\r\n");
+}
+
+sub check_keep_alive
+{
+return $header{'connection'} =~ /keep-alive/i;
+}
+
+sub term_handler
+{
+if (@childpids) {
+ kill('TERM', @childpids);
+ }
+exit(1);
+}
+
+sub http_date
+{
+local @tm = gmtime($_[0]);
+return sprintf "%s, %d %s %d %2.2d:%2.2d:%2.2d GMT",
+ $weekday[$tm[6]], $tm[3], $month[$tm[4]], $tm[5]+1900,
+ $tm[2], $tm[1], $tm[0];
+}
+
+sub TIEHANDLE
+{
+my $i; bless \$i, shift;
+}
+
+sub WRITE
+{
+$r = shift;
+my($buf,$len,$offset) = @_;
+&write_to_sock(substr($buf, $offset, $len));
+}
+
+sub PRINT
+{
+$r = shift;
+$$r++;
+&write_to_sock(@_);
+}
+
+sub PRINTF
+{
+shift;
+my $fmt = shift;
+&write_to_sock(sprintf $fmt, @_);
+}
+
+sub READ
+{
+$r = shift;
+substr($_[0], $_[2], $_[1]) = substr($postinput, $postpos, $_[1]);
+$postpos += $_[1];
+}
+
+sub OPEN
+{
+print STDERR "open() called - should never happen!\n";
+}
+
+sub READLINE
+{
+if ($postpos >= length($postinput)) {
+ return undef;
+ }
+local $idx = index($postinput, "\n", $postpos);
+if ($idx < 0) {
+ local $rv = substr($postinput, $postpos);
+ $postpos = length($postinput);
+ return $rv;
+ }
+else {
+ local $rv = substr($postinput, $postpos, $idx-$postpos+1);
+ $postpos = $idx+1;
+ return $rv;
+ }
+}
+
+sub GETC
+{
+return $postpos >= length($postinput) ? undef
+ : substr($postinput, $postpos++, 1);
+}
+
+sub CLOSE { }
+
+sub DESTROY { }
+
+# write_to_sock(data, ...)
+sub write_to_sock
+{
+foreach $d (@_) {
+ if ($doneheaders || $miniserv::nph_script) {
+ &write_data($d);
+ }
+ else {
+ $headers .= $d;
+ while(!$doneheaders && $headers =~ s/^(.*)(\r)?\n//) {
+ if ($1 =~ /^(\S+):\s+(.*)$/) {
+ $cgiheader{lc($1)} = $2;
+ }
+ elsif ($1 !~ /\S/) {
+ $doneheaders++;
+ }
+ else {
+ &http_error(500, "Bad Header");
+ }
+ }
+ if ($doneheaders) {
+ if ($cgiheader{"location"}) {
+ &write_data(
+ "HTTP/1.0 302 Moved Temporarily\r\n");
+ &write_data("Date: $datestr\r\n");
+ &write_data("Server: $config{server}\r\n");
+ &write_keep_alive(0);
+ }
+ elsif ($cgiheader{"content-type"} eq "") {
+ &http_error(500, "Missing Content-Type Header");
+ }
+ else {
+ &write_data("HTTP/1.0 $ok_code $ok_message\r\n");
+ &write_data("Date: $datestr\r\n");
+ &write_data("Server: $config{server}\r\n");
+ &write_keep_alive(0);
+ }
+ foreach $h (keys %cgiheader) {
+ &write_data("$h: $cgiheader{$h}\r\n");
+ }
+ &write_data("\r\n");
+ &reset_byte_count();
+ &write_data($headers);
+ }
+ }
+ }
+}
+
+sub verify_client
+{
+local $cert = Net::SSLeay::X509_STORE_CTX_get_current_cert($_[1]);
+if ($cert) {
+ local $errnum = Net::SSLeay::X509_STORE_CTX_get_error($_[1]);
+ $verified_client = 1 if (!$errnum);
+ }
+return 1;
+}
+
+sub END
+{
+if ($doing_eval) {
+ # A CGI program called exit! This is a horrible hack to
+ # finish up before really exiting
+ close(SOCK);
+ &log_request($acpthost, $authuser, $reqline,
+ $cgiheader{"location"} ? "302" : $ok_code, &byte_count());
+ }
+}
+
+# urlize
+# Convert a string to a form ok for putting in a URL
+sub urlize {
+ local($tmp, $tmp2, $c);
+ $tmp = $_[0];
+ $tmp2 = "";
+ while(($c = chop($tmp)) ne "") {
+ if ($c !~ /[A-z0-9]/) {
+ $c = sprintf("%%%2.2X", ord($c));
+ }
+ $tmp2 = $c . $tmp2;
+ }
+ return $tmp2;
+}
+
+# validate_user(username, password)
+sub validate_user
+{
+return 0 if (!$_[0] || !$users{$_[0]});
+if ($users{$_[0]} eq 'x' && $use_pam) {
+ $pam_username = $_[0];
+ $pam_password = $_[1];
+ local $pamh = new Authen::PAM("webmin", $pam_username, \&pam_conv_func);
+ if (!ref($pamh)) {
+ print STDERR "PAM init failed : $pamh\n";
+ return 0;
+ }
+ local $pam_ret = $pamh->pam_authenticate();
+ return $pam_ret == PAM_SUCCESS ? 1 : 0;
+ }
+else {
+ return $users{$_[0]} eq crypt($_[1], $users{$_[0]}) ? 1 : 0;
+ }
+}
+
+# the PAM conversation function for interactive logins
+sub pam_conv_func
+{
+my @res;
+while ( @_ ) {
+ my $code = shift;
+ my $msg = shift;
+ my $ans = "";
+
+ $ans = $pam_username if ($code == PAM_PROMPT_ECHO_ON() );
+ $ans = $pam_password if ($code == PAM_PROMPT_ECHO_OFF() );
+
+ push @res, PAM_SUCCESS();
+ push @res, $ans;
+ }
+push @res, PAM_SUCCESS();
+return @res;
+}
+
74 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203
# translation of DrakX-tg.po to Tajik
# translation of DrakX-tg.po to Тоҷикӣ
# Copyright (C) 2001,2002,2003,2004, 2005 Free Software Foundation, Inc.
# 2004, infoDev, a World Bank organization
# 2004, Khujand Computer Technologies, Inc.
# 2004, KCT1, NGO
# 2005, Youth Opportunities, NGO
# Abrorova Hiromon, 2004
# Roger Kovacs <rkovacs@khujand.org>, 2003.
# Dilshod Marupov <dma165@hotmail.com>, 2003, 2004.
# Murod Marupov <abdullovich@khujand.org>, 2004.
# Bahromhon Bobojonov <bahrambabajanov@hotmail.com>, 2004.
# Victor Ibragimov <youth_opportunities@tajikngo.org>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX-tg\n"
"POT-Creation-Date: 2008-09-11 19:34+0200\n"
"PO-Revision-Date: 2005-09-17 16:03+0500\n"
"Last-Translator: Victor Ibragimov <youth_opportunities@tajikngo.org>\n"
"Language-Team: Tajik\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10\n"

#: any.pm:252 any.pm:853 diskdrake/interactive.pm:554
#: diskdrake/interactive.pm:741 diskdrake/interactive.pm:785
#: diskdrake/interactive.pm:843 diskdrake/interactive.pm:1133 do_pkgs.pm:221
#: do_pkgs.pm:267 harddrake/sound.pm:285 interactive.pm:584 pkgs.pm:257
#, c-format
msgid "Please wait"
msgstr "Лутфан интизор шавед"

#: any.pm:252
#, c-format
msgid "Bootloader installation in progress"
msgstr "Коргузории боркунандаи ибтидоӣ ба пешрафт"

#: any.pm:263
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s.  However, changing\n"
"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
msgstr ""
"LILO мехоҳад Шиносаи нави Баландии Овозро барои гардонандаи %s таъин созад.\n"
"Лекин ивазкунии Шиносаи Баландии Овози Windows NT, 2000, ё XP диски боркунии "
"Windows хатогии ҷиддӣ мебошад.\n"
"Ин ҳолат бо Windows 95 ё 98, ё дар NT додаҳои диск ба амал намеояд.\n"
"\n"
"Шиносаи нави Баландии Овозро таъин созам?"

#: any.pm:274
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Коргузории корандози худборшав бемувафаққият ба анҷом расид. Хатогии зерин "
"рӯй дод:"

#: any.pm:280
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Шояд ба шумо лозим аст, ки дастгоҳи худборшавии Open Firmware-и худро барои "
"дар\n"
" гиронидани корандози худборшав тағир диҳед.Агар шумо ҳангоми аз нав\n"
" худборшавии эъломи корандози худборшавро набинед, онгоҳ Command-Option-O-F\n"
" ҳангоми аз нав худборшавӣ нигоҳ доред ва setenv boot-device %s,\\\\:tbxi-ро "
"дохил\n"
" намоед\n"
" Сониян: shut-down-ро нависед\n"
" Ҳангоми худборшавии оянда шумо бояд эъломи корандози худборшавро бинед."

#: any.pm:320
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Шумо ба қарор омадед, ки корандози худборшавро дар ин қисм коргузорӣ "
"менамоед.\n"
"Тахмин карда мешавад, ки дар диски сахте ки шумо дар он худборшавиро ба амал "
"меоред аллакай корандози худборшав мавҷуд аст (масалан, System Commander).\n"
"\n"
"Аз кадом диск шумо худборшавиро амалӣ менамоед?"

#: any.pm:346
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Соҳаи аввали гардон (МБР)"

#: any.pm:348
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Соҳаи аввали гардон (МБР)"

#: any.pm:350
#, c-format
msgid "First sector of the root partition"
msgstr "Соҳаи аввали бахши root"

#: any.pm:352
#, c-format
msgid "On Floppy"
msgstr "Дискет"

#: any.pm:354
#, c-format
msgid "Skip"
msgstr "Гузарондан"

#: any.pm:358
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Коргузории боркунандаи ибтидоӣ ба пешрафт"

#: any.pm:362
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Шумо корандози худборшавро дар куҷо кор гузоштан мехоҳед?"

#: any.pm:386
#, c-format
msgid "Boot Style Configuration"
msgstr "Танзимдарории Навъи Худборшавӣ"

#: any.pm:396 any.pm:427 any.pm:428
#, c-format
msgid "Bootloader main options"
msgstr "Хосиятҳои асосии корандози худборшав"

#: any.pm:400
#, c-format
msgid "Bootloader"
msgstr "Корандози худборшав"

#: any.pm:401 any.pm:431
#, c-format
msgid "Bootloader to use"
msgstr "Корандози худборшав барои истифода"

#: any.pm:403 any.pm:433
#, c-format
msgid "Boot device"
msgstr "Дастгоҳи худборшав"

#: any.pm:405
#, c-format
msgid "Main options"
msgstr ""

#: any.pm:406
#, c-format
msgid "Delay before booting default image"
msgstr "Пеш аз худборшавӣ андармони симои пешфарз"

#: any.pm:407
#, c-format
msgid "Enable ACPI"
msgstr "Даргиронидани ACPI"

#: any.pm:408
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Даргиронидани ACPI"

#: any.pm:409
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Даргиронидани ACPI"

#: any.pm:411 any.pm:797 any.pm:812 authentication.pm:239
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Гузарвожа"

#: any.pm:413 authentication.pm:250
#, c-format
msgid "The passwords do not match"
msgstr "Гузарвожаҳо мувофиқ нестанд"

#: any.pm:413 authentication.pm:250 diskdrake/interactive.pm:1300
#, c-format
msgid "Please try again"
msgstr "Лутфан, аз нав кӯшиш кунед"

#: any.pm:414
#, fuzzy, c-format
msgid "You can not use a password with %s"
msgstr ""
"Шумо файл системи рамздоштаро барои нуқтаи васли %s истифода бурда "
"наметавонед"

#: any.pm:417 any.pm:799 any.pm:814 authentication.pm:240
#, c-format
msgid "Password (again)"
msgstr "Гузарвожа (боз)"

#: any.pm:418
#, c-format
msgid "Restrict command line options"
msgstr "Маҳдуди хосиятҳои сатри фармон"

#: any.pm:418
#, c-format
msgid "restrict"
msgstr "маҳдуд"

#: any.pm:421
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Хосият ‘’Маҳдуди хосиятҳои сатри фармон‘’ бе гузарвожа суд надорад"

#: any.pm:423
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Дар ҳар худборшавӣ /tmp-ро тоза кунед"

#: any.pm:432
#, c-format
msgid "Init Message"
msgstr "Пайғоми Init"

#: any.pm:434
#, c-format
msgid "Open Firmware Delay"
msgstr "Кушодани Андармони Миёнафзор"

#: any.pm:435
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Танаффуси Худборшави Асосӣ"

#: any.pm:436
#, c-format
msgid "Enable CD Boot?"
msgstr "CD Худборшавро дар гиронем?"

#: any.pm:437
#, c-format
msgid "Enable OF Boot?"
msgstr "OF Худборшавро дар гиронем?"

#: any.pm:438
#, c-format
msgid "Default OS?"
msgstr "Пешфарзи OS?"

#: any.pm:505
#, c-format
msgid "Image"
msgstr "Симо"

#: any.pm:506 any.pm:519
#, c-format
msgid "Root"
msgstr "Root"

#: any.pm:507 any.pm:532
#, c-format
msgid "Append"
msgstr "Пайваст"

#: any.pm:509
#, c-format
msgid "Xen append"
msgstr ""

#: any.pm:512
#, c-format
msgid "Video mode"
msgstr "Усули видео"

#: any.pm:514
#, c-format
msgid "Initrd"
msgstr "Initrd"

#: any.pm:515
#, c-format
msgid "Network profile"
msgstr "Тахассуси шабака"

#: any.pm:524 any.pm:529 any.pm:531 diskdrake/interactive.pm:376
#, c-format
msgid "Label"
msgstr "Нишона"

#: any.pm:526 any.pm:534 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Пешфарз"

#: any.pm:533
#, c-format
msgid "NoVideo"
msgstr "БеВидео"

#: any.pm:544
#, c-format
msgid "Empty label not allowed"
msgstr "Нишони холӣ иҷозат нест"

#: any.pm:545
#, c-format
msgid "You must specify a kernel image"
msgstr "Шумо бояд симои асосро нишон диҳед"

#: any.pm:545
#, c-format
msgid "You must specify a root partition"
msgstr "Шумо бояд қисми решагиро муайян кунед"

#: any.pm:546
#, c-format
msgid "This label is already used"
msgstr "Ин нишона аллакай истифода шудааст"

#: any.pm:564
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Кадом навъи элементро илова кардан мехоҳед?"

#: any.pm:565
#, c-format
msgid "Linux"
msgstr "Linux"

#: any.pm:565
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Дигар СО (SunOS...)"

#: any.pm:566
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Дигар СО (MacOS...)"

#: any.pm:566
#, c-format
msgid "Other OS (Windows...)"
msgstr "Дигар СО (Windows...)"

#: any.pm:594
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Танзимдарории Навъи Худборшавӣ"

#: any.pm:595
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"Дар ҳамин лаҳза дар менюи худборшав элементҳои зерин ҳастанд.\n"
"Шумо метавонед элементҳои иловагӣ офаред ё вуҷуд бударо иваз кунед."

#: any.pm:758
#, c-format
msgid "access to X programs"
msgstr "дастёбӣ ба X-барномаҳо"

#: any.pm:759
#, c-format
msgid "access to rpm tools"
msgstr "роҳ ба воситаҳои rpm"

#: any.pm:760
#, c-format
msgid "allow \"su\""
msgstr "иҷозат додани \"su\""

#: any.pm:761
#, c-format
msgid "access to administrative files"
msgstr "роҳ ба файлҳои маъмурият"

#: any.pm:762
#, c-format
msgid "access to network tools"
msgstr "роҳ ба асбобҳои шабака"

#: any.pm:763
#, c-format
msgid "access to compilation tools"
msgstr "роҳ ба асбобҳои талфифа"

#: any.pm:769
#, c-format
msgid "(already added %s)"
msgstr "(аллакай илова шуд %s)"

#: any.pm:775
#, c-format
msgid "Please give a user name"
msgstr "Илтимос ноим корвандро диҳед"

#: any.pm:776
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"“Номи корванд бояд фақат аз ҳарфҳои хурд, рақамҳо, `-' ва `_' иборат бошад”"

#: any.pm:777
#, c-format
msgid "The user name is too long"
msgstr "Ин номи корванд хеле дароз"

#: any.pm:778
#, c-format
msgid "This user name has already been added"
msgstr "Ин номи корванд аллакай илова шудааст"

#: any.pm:784 any.pm:816
#, c-format
msgid "User ID"
msgstr "Корванди ID"

#: any.pm:784 any.pm:817
#, c-format
msgid "Group ID"
msgstr "Гурӯҳи ID"

#: any.pm:785
#, c-format
msgid "%s must be a number"
msgstr "%s бояд рақам бошад"

#: any.pm:786
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""

#: any.pm:790
#, fuzzy, c-format
msgid "User management"
msgstr "Номи корванд"

#: any.pm:796 authentication.pm:226
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Барпои гузарвожаи решагӣ"

#: any.pm:801
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"“Дохил кардани корванд\n"
"”“%s”"

#: any.pm:803
#, c-format
msgid "Icon"
msgstr "Тасвир"

#: any.pm:806
#, c-format
msgid "Real name"
msgstr "Номи ҳақиқӣ"

#: any.pm:810
#, c-format
msgid "Login name"
msgstr "Номи дохилӣ"

#: any.pm:815
#, c-format
msgid "Shell"
msgstr "Ҷилд"

#: any.pm:848
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "марҳамат карда таи иҷроиши ttmkfdir... мунтазир шавед"

#: any.pm:866 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Худдохилшавӣ"

#: any.pm:867
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Ман метавонам компютери шуморо чунин гузорам, ки автоматиткӣ як корванд "
"дохил шавад."

#: any.pm:868
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Шумо ин хислатро истифрда бурдан мехоҳед?"

#: any.pm:869
#, c-format
msgid "Choose the default user:"
msgstr "Корванди пешфарзро интихоб кунед:"

#: any.pm:870
#, c-format
msgid "Choose the window manager to run:"
msgstr "Барои корандохтан менеҷери оинаро интихоб кунед:"

#: any.pm:881 any.pm:899 any.pm:957
#, c-format
msgid "Release Notes"
msgstr "Навиштаҷотҳои Барориш"

#: any.pm:906 any.pm:1250 interactive/gtk.pm:804
#, c-format
msgid "Close"
msgstr "Пӯшед"

#: any.pm:943
#, c-format
msgid "License agreement"
msgstr "Шартномаи литсензионӣ"

#: any.pm:945 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Баромадан"

#: any.pm:952
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Шумо боз дигар доред?"

#: any.pm:953
#, c-format
msgid "Accept"
msgstr "Қабул намудан"

#: any.pm:953
#, c-format
msgid "Refuse"
msgstr "Рад кардан"

#: any.pm:980 any.pm:1045
#, c-format
msgid "Please choose a language to use"
msgstr "Илтимос, барои истифода забонро интихоб кунед"

#: any.pm:1009
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
"Mandriva Linux якчанд забонҳоро дастгирӣ менамояд. Забонҳоеро интихоб "
"намоед, ки\n"
"шумо онҳоро коргузорӣ кардан мехоҳед. Вақте ки коргузорӣ ба итмом мерасад "
"онҳо\n"
"дастрас мегарданд ва системи худро бозоғозӣ намоед."

#: any.pm:1012
#, c-format
msgid "Multi languages"
msgstr ""

#: any.pm:1023 any.pm:1054
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""

#: any.pm:1025
#, c-format
msgid "All languages"
msgstr "Ҳамаи забонҳо"

#: any.pm:1046
#, c-format
msgid "Language choice"
msgstr "Интихоби забон"

#: any.pm:1101
#, c-format
msgid "Country / Region"
msgstr "Мамлакат/ Минтақа"

#: any.pm:1102
#, c-format
msgid "Please choose your country."
msgstr "Лутфан мамлакати худро интихоб кунед."

#: any.pm:1104
#, c-format
msgid "Here is the full list of available countries"
msgstr "Дар ин ҷо рӯйхати пурраи давлатҳои мавҷуда дода шудааст"

#: any.pm:1105
#, c-format
msgid "Other Countries"
msgstr "Дигар Давлатҳо"

#: any.pm:1105 interactive.pm:484 interactive/gtk.pm:426
#, c-format
msgid "Advanced"
msgstr "Беҳбудшуда"

#: any.pm:1111
#, c-format
msgid "Input method:"
msgstr "Усули воридкунӣ:"

#: any.pm:1114
#, c-format
msgid "None"
msgstr "Ҳеҷ"

#: any.pm:1195
#, c-format
msgid "No sharing"
msgstr "Дастёбии муштарак нест"

#: any.pm:1195
#, c-format
msgid "Allow all users"
msgstr "Ба ҳамаи корвандон иҷозат додан"

#: any.pm:1195
#, c-format
msgid "Custom"
msgstr "Интихобӣ"

#: any.pm:1199
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"Оё шумо хоҳиши розигӣ доданро ба корвандон оиди якҷоя истифода намудани "
"феҳристҳои онҳоро доред? Ин ба корвандон имкон медиҳад, ки танҳо ба \"Тақсим "
"кардан\" дар konqueror ва nautilus ангушт зананд.\n"
"\"Интихобӣ\" ба корвандони алоҳида дастрасшавиро иҷозат медиҳад.\n"

#: any.pm:1211
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
"NFS: Системаи Unix барои бо ҳам дидани маълумот, бе истифода бурадани Mac ва "
"Windows."

#: any.pm:1214
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
"SMB: Система барои бо ҳам дидани маълумот бо воситаи Windows, Mac OS ва "
"Linux истифода бурда мешавад."

#: any.pm:1222
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Шумо ба воситаи NFS ё SMB содир карда метавонед. Марҳамат карда, якеро, ки "
"истифода бурдан мехоҳед, интихоб намоед."

#: any.pm:1250
#, c-format
msgid "Launch userdrake"
msgstr "Сардиҳии userdrake"

#: any.pm:1252
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Дастрасии умумии ҳар як корванд гурӯҳи\"fileshare\"-ро истифода мебарад. \n"
"Шумо метавонед userdrake-ро барои илова намудани корвандон ба ин гурӯҳ "
"истифодабаред."

#: any.pm:1344
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Илтимос берун шавед ва Ctrl-Alt-BackSpace-ро истифода баред"

#: any.pm:1348
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Шумо бояд бароед ва аз нав дароед барои он ки тағиротҳо натиҷа бахшанд"

#: any.pm:1383
#, c-format
msgid "Timezone"
msgstr "Минтақаи соатӣ"

#: any.pm:1383
#, c-format
msgid "Which is your timezone?"
msgstr "Вақти соати шумо чӣ гуна аст?"

#: any.pm:1406 any.pm:1408
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""

#: any.pm:1409
#, c-format
msgid "What is the best time?"
msgstr ""

#: any.pm:1413
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Соати сахтафзорӣ ба GMT муқаррар гардидааст"

#: any.pm:1414
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Соати сахтафзорӣ ба GMT муқаррар гардидааст"

#: any.pm:1416
#, c-format
msgid "NTP Server"
msgstr "NTP Хидматрасон"

#: any.pm:1417
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Худҳамзамонсозии вақт (бо истифодаи NTP)"

#: authentication.pm:25
#, c-format
msgid "Local file"
msgstr "Файли маҳаллӣ"

#: authentication.pm:26
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: authentication.pm:27
#, c-format
msgid "NIS"
msgstr "Давлатҳои Нави Мустақил"

#: authentication.pm:28
#, c-format
msgid "Smart Card"
msgstr "Корти Ҳушманд"

#: authentication.pm:29 authentication.pm:205
#, c-format
msgid "Windows Domain"
msgstr "Фазои Windows"

#: authentication.pm:30
#, c-format
msgid "Kerberos 5"
msgstr ""

#: authentication.pm:64
#, c-format
msgid "Local file:"
msgstr "Файли маҳаллӣ:"

#: authentication.pm:64
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""
"Ахборот ва аслшиносии маҳаллии корвандро аз файли маҳаллӣ истифода баред"

#: authentication.pm:65
#, c-format
msgid "LDAP:"
msgstr "LDAP:"

#: authentication.pm:65
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
"Ба компютери шумо хабар медиҳем, ки он бояд LDAP-ро барои ҳамаи ё якеи аз "
"аслшиносиҳо истифода барад. LDAP якеи аз навъҳои ахборотро дар дохили "
"ширкати шумо муттаҳид мегардонад."

#: authentication.pm:66
#, c-format
msgid "NIS:"
msgstr "Давлатҳои Нави Мустақил:"

#: authentication.pm:66
#, c-format
msgid ""
"Allows you to run a group of computers in the same Network Information "
"Service domain with a common password and group file."
msgstr ""
"Ба гурӯҳи компютерҳо иҷозати кор кардан дар як домени Network Information "
"Service бо файлҳои умумии гузарвожаҳо ва гурӯҳҳо, медиҳад."

#: authentication.pm:67
#, c-format
msgid "Windows Domain:"
msgstr "Фазои Windows:"

#: authentication.pm:67
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""
"Winbind ба система имконияти бозёбии ахборот ва аслшиносии корвандон дар "
"домени Windows медиҳад."

#: authentication.pm:68
#, c-format
msgid "Kerberos 5 :"
msgstr ""

#: authentication.pm:68
#, c-format
msgid "With Kerberos and Ldap for authentication in Active Directory Server "
msgstr ""

#: authentication.pm:96 authentication.pm:130 authentication.pm:149
#: authentication.pm:150 authentication.pm:176 authentication.pm:200
#: authentication.pm:878
#, c-format
msgid " "
msgstr ""

#: authentication.pm:97 authentication.pm:131 authentication.pm:177
#: authentication.pm:201
#, fuzzy, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "Ҳақиқӣ будани соҳибият талаб карда мешавад"

#: authentication.pm:99
#, c-format
msgid ""
"You have selected LDAP authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:101 authentication.pm:156
#, c-format
msgid "LDAP Server"
msgstr "Хидматрасони LDAP"

#: authentication.pm:102 authentication.pm:157
#, fuzzy, c-format
msgid "Base dn"
msgstr "LDAP Base dn"

#: authentication.pm:103
#, c-format
msgid "Fetch base Dn "
msgstr ""

#: authentication.pm:105 authentication.pm:160
#, c-format
msgid "Use encrypt connection with TLS "
msgstr ""

#: authentication.pm:106 authentication.pm:161
#, c-format
msgid "Download CA Certificate "
msgstr ""

#: authentication.pm:108 authentication.pm:141
#, c-format
msgid "Use Disconnect mode "
msgstr ""

#: authentication.pm:109 authentication.pm:162
#, fuzzy, c-format
msgid "Use anonymous BIND "
msgstr "BIND-и Номаълумро Истифода Баред "

#: authentication.pm:110 authentication.pm:113 authentication.pm:115
#: authentication.pm:119
#, c-format
msgid "  "
msgstr ""

#: authentication.pm:111 authentication.pm:163
#, c-format
msgid "Bind DN "
msgstr ""

#: authentication.pm:112 authentication.pm:164
#, fuzzy, c-format
msgid "Bind Password "
msgstr "Гузарвожа"

#: authentication.pm:114
#, c-format
msgid "Advanced path for group "
msgstr ""

#: authentication.pm:116
#, fuzzy, c-format
msgid "Password base"
msgstr "Гузарвожа"

#: authentication.pm:117
#, fuzzy, c-format
msgid "Group base"
msgstr "Гурӯҳи ID"

#: authentication.pm:118
#, c-format
msgid "Shadow base"
msgstr ""

#: authentication.pm:133
#, c-format
msgid ""
"You have selected Kerberos 5 authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:135
#, fuzzy, c-format
msgid "Realm "
msgstr "Номи ҳақиқӣ"

#: authentication.pm:137
#, fuzzy, c-format
msgid "KDCs Servers"
msgstr "Хидматрасони LDAP"

#: authentication.pm:139
#, c-format
msgid "Use DNS to resolve hosts for realms "
msgstr ""

#: authentication.pm:140
#, c-format
msgid "Use DNS to resolve KDCs for realms "
msgstr ""

#: authentication.pm:145
#, fuzzy, c-format
msgid "Use local file for users information"
msgstr "Барои хидматрасонҳо libsafe-ро истифода намудан"

#: authentication.pm:146
#, fuzzy, c-format
msgid "Use Ldap for users information"
msgstr "Маълумоти сахтгардон"

#: authentication.pm:152
#, c-format
msgid ""
"You have selected Kerberos 5 for authentication, now you must choose the "
"type of users information "
msgstr ""

#: authentication.pm:158
#, c-format
msgid "Fecth base Dn "
msgstr ""

#: authentication.pm:179
#, c-format
msgid ""
"You have selected NIS authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:181
#, c-format
msgid "NIS Domain"
msgstr "Фазои NIS"

#: authentication.pm:182
#, c-format
msgid "NIS Server"
msgstr "Хидматрасони NIS"

#: authentication.pm:203
#, c-format
msgid ""
"You have selected Windows Domain authentication. Please review the "
"configuration options below "
msgstr ""

#: authentication.pm:207
#, fuzzy, c-format
msgid "Domain Model "
msgstr "Домен"

#: authentication.pm:209
#, c-format
msgid "Active Directory Realm "
msgstr ""

#: authentication.pm:225 authentication.pm:241
#, c-format
msgid "Authentication"
msgstr "Аслшиносӣ"

#: authentication.pm:227
#, c-format
msgid "Authentication method"
msgstr "Усули аслшиносӣ"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:232
#, c-format
msgid "No password"
msgstr "Гузарвожа нест"

#: authentication.pm:253
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ин гузарвожа бениҳоят кӯтоҳ мебошад (он бояд ақаллан дарозиаш %d бошад)"

#: authentication.pm:358
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Бе азозили NIS радиошунавоиро ба роҳ монда намешавад"

#: authentication.pm:873
#, c-format
msgid "Select file"
msgstr "Интихоби файл"

#: authentication.pm:879
#, fuzzy, c-format
msgid "Domain Windows for authentication : "
msgstr "Ҳақиқӣ будани соҳибият талаб карда мешавад"

#: authentication.pm:881
#, c-format
msgid "Domain Admin User Name"
msgstr "Номи Корванд - Идоракунандаи Соҳибӣ"

#: authentication.pm:882
#, c-format
msgid "Domain Admin Password"
msgstr "Гузарвожаи Мудири Соҳиб"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:942
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"
msgstr ""
"Marhamat ba intihobrari sisteman omil!\n"
"\n"
"Az ru'yhati bolo sistemai omilro intihob kuned yo\n"
"hudborshavy bo nobayoniro intizor shaved.\n"
"\n"

#: bootloader.pm:1110
#, c-format
msgid "LILO with text menu"
msgstr "LILO бо менюи матн"

#: bootloader.pm:1111
#, c-format
msgid "GRUB with graphical menu"
msgstr ""

#: bootloader.pm:1112
#, c-format
msgid "GRUB with text menu"
msgstr ""

#: bootloader.pm:1113
#, c-format
msgid "Yaboot"
msgstr "Yaхудборшав"

#: bootloader.pm:1114
#, c-format
msgid "SILO"
msgstr ""

#: bootloader.pm:1195
#, c-format
msgid "not enough room in /boot"
msgstr "дар /boot ҷои кофӣ нест"

#: bootloader.pm:1843
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Шумо корандози худборшавро дар бахши %s корандохта наметавонед\n"

#: bootloader.pm:1964
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
"Танзимкунии боркунандаи ибтидоии шумо бояд нав карда шавад, зеро қисмҳо аз "
"нав рақам гузошта шудаанд"

#: bootloader.pm:1977
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
"Боркунандаи ибтидоӣ дуруст коргузори карда намешавад. Шумо бояд rescue-ро "
"бор кунед ва \"%s\"-ро интихоб намоед"

#: bootloader.pm:1978
#, c-format
msgid "Re-install Boot Loader"
msgstr "Корандози Худборшавро аз нав Коргузорӣ намудан"

#: common.pm:142
#, fuzzy, c-format
msgid "B"
msgstr "KB"

#: common.pm:142
#, c-format
msgid "KB"
msgstr "KB"

#: common.pm:142
#, c-format
msgid "MB"
msgstr "MB"

#: common.pm:142
#, c-format
msgid "GB"
msgstr "GB"

#: common.pm:142 common.pm:151
#, c-format
msgid "TB"
msgstr "TB"

#: common.pm:159
#, c-format
msgid "%d minutes"
msgstr "%d дақиқа"

#: common.pm:161
#, c-format
msgid "1 minute"
msgstr "1 дақиқа"

#: common.pm:163
#, c-format
msgid "%d seconds"
msgstr "%d сония"

#: common.pm:358
#, c-format
msgid "command %s missing"
msgstr ""

#: diskdrake/dav.pm:17
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""
"WebDAV қарордоди наве мебошад имконияти ба таврӣ маҳаллӣ дастурамали "
"корванди\n"
"web-ро васл намуданро пешкаш менамояд ва онро ҳамчун системи файлии маҳаллӣ\n"
"ёдрас менамояд(бо шарте ки корванди web ҳамчун корванди WebDAV ба танзим\n"
"дароварда шудааст). Агар шумо хоҳиши илова намудани нуқтаҳои васлшавии\n"
"WebDAV -ро дошта бошед, онгоҳ \"Нав\"-ро интихоб намоед."

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Нав"

#: diskdrake/dav.pm:61 diskdrake/interactive.pm:382 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Ҷудо кунӣ"

#: diskdrake/dav.pm:62 diskdrake/interactive.pm:379 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Васл кунӣ"

#: diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Хидматрасон"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:373
#: diskdrake/interactive.pm:613 diskdrake/interactive.pm:631
#: diskdrake/interactive.pm:635 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Нуқтаи васл"

#: diskdrake/dav.pm:65 diskdrake/interactive.pm:375
#: diskdrake/interactive.pm:989 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Хосиятҳо"

#: diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:174 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Шуд"

#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:120 diskdrake/hd_gtk.pm:272
#: diskdrake/interactive.pm:233 diskdrake/interactive.pm:246
#: diskdrake/interactive.pm:480 diskdrake/interactive.pm:485
#: diskdrake/interactive.pm:603 diskdrake/interactive.pm:861
#: diskdrake/interactive.pm:1035 diskdrake/interactive.pm:1048
#: diskdrake/interactive.pm:1051 diskdrake/interactive.pm:1300
#: diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 do_pkgs.pm:28 do_pkgs.pm:44
#: do_pkgs.pm:60 do_pkgs.pm:65 fsedit.pm:222 interactive/http.pm:117
#: interactive/http.pm:118 modules/interactive.pm:19 scanner.pm:94
#: scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95 wizards.pm:99
#: wizards.pm:121
#, c-format
msgid "Error"
msgstr "Хатогӣ"

#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Лутфан, URL-и хидматрасони WebDAV-ро дохил намоед"

#: diskdrake/dav.pm:87
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL бояд бо http:// or https:// оғоз ёбад"

#: diskdrake/dav.pm:109
#, c-format
msgid "Server: "
msgstr "Хидматгор: "

#: diskdrake/dav.pm:110 diskdrake/interactive.pm:453
#: diskdrake/interactive.pm:1180 diskdrake/interactive.pm:1260
#, c-format
msgid "Mount point: "
msgstr "Нуқтаи васлкунӣ: "

#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1267
#, c-format
msgid "Options: %s"
msgstr "Хосиятҳо: %s "

#: diskdrake/hd_gtk.pm:54 diskdrake/interactive.pm:284
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
#: fs/partitioning_wizard.pm:51 fs/partitioning_wizard.pm:206
#: fs/partitioning_wizard.pm:211 fs/partitioning_wizard.pm:250
#: fs/partitioning_wizard.pm:269 fs/partitioning_wizard.pm:274
#, c-format
msgid "Partitioning"
msgstr "Ҷузъбандӣ"

#: diskdrake/hd_gtk.pm:68
#, c-format
msgid "Click on a partition, choose a filesystem type then choose an action"
msgstr ""

#: diskdrake/hd_gtk.pm:102 diskdrake/interactive.pm:1010
#: diskdrake/interactive.pm:1020 diskdrake/interactive.pm:1073
#, c-format
msgid "Read carefully"
msgstr "Оҳиста хонед"

#: diskdrake/hd_gtk.pm:102
#, c-format
msgid "Please make a backup of your data first"
msgstr "Илтимос аввал кӯмакрасонӣ додаҳои худро созед"

#: diskdrake/hd_gtk.pm:103 diskdrake/interactive.pm:226
#, c-format
msgid "Exit"
msgstr "Хуруҷ"

#: diskdrake/hd_gtk.pm:103
#, c-format
msgid "Continue"
msgstr "Давом додан"

#: diskdrake/hd_gtk.pm:170 interactive.pm:649 interactive/gtk.pm:781
#: interactive/gtk.pm:797 interactive/gtk.pm:815 ugtk2.pm:933 ugtk2.pm:934
#, c-format
msgid "Help"
msgstr "Ёрӣ"

#: diskdrake/hd_gtk.pm:208
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Шумо як бахши калони Microsoft Windows доред.\n"
"Ман ба шумо авввал он бахшро бозандоза намуданро пешниҳод мекунам\n"
"(дар он ангушт занед, ва баъд дар \"Бозандоза\") ангушт занед"

#: diskdrake/hd_gtk.pm:210
#, c-format
msgid "Please click on a partition"
msgstr "Лутфан дар бахш ангушт занед"

#: diskdrake/hd_gtk.pm:224 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Тафсилот"

#: diskdrake/hd_gtk.pm:272
#, c-format
msgid "No hard drives found"
msgstr "Ягон сахтгардон ёфт нашуд"

#: diskdrake/hd_gtk.pm:299
#, c-format
msgid "Unknown"
msgstr "Номаълум"

#: diskdrake/hd_gtk.pm:361
#, fuzzy, c-format
msgid "Ext3"
msgstr "Хуруҷ"

#: diskdrake/hd_gtk.pm:361
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:361
#, c-format
msgid "Swap"
msgstr "Мубодила"

#: diskdrake/hd_gtk.pm:361
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: diskdrake/hd_gtk.pm:361
#, c-format
msgid "HFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:361
#, c-format
msgid "Windows"
msgstr "Windows"

#: diskdrake/hd_gtk.pm:362 services.pm:158
#, c-format
msgid "Other"
msgstr "Дигар"

#: diskdrake/hd_gtk.pm:362 diskdrake/interactive.pm:1195
#, c-format
msgid "Empty"
msgstr "Холӣ"

#: diskdrake/hd_gtk.pm:369
#, c-format
msgid "Filesystem types:"
msgstr "Навъҳои файлсистем:"

#: diskdrake/hd_gtk.pm:390 diskdrake/interactive.pm:289
#: diskdrake/interactive.pm:361 diskdrake/interactive.pm:510
#: diskdrake/interactive.pm:694 diskdrake/interactive.pm:752
#: diskdrake/interactive.pm:841 diskdrake/interactive.pm:883
#: diskdrake/interactive.pm:884 diskdrake/interactive.pm:1118
#: diskdrake/interactive.pm:1156 diskdrake/interactive.pm:1299 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 harddrake/sound.pm:422
#, c-format
msgid "Warning"
msgstr "Огоҳӣ"

#: diskdrake/hd_gtk.pm:390
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Ин бахш бозандозагирифта нашаванда аст"

#: diskdrake/hd_gtk.pm:399
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Аввал ``Ҷудо кардан''-ро истифода баред"

#: diskdrake/hd_gtk.pm:399
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Ба ҷояш ``%s''-ро истифода баред "

#: diskdrake/hd_gtk.pm:399 diskdrake/interactive.pm:374
#: diskdrake/interactive.pm:548 diskdrake/interactive.pm:1026
#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Навъ"

#: diskdrake/interactive.pm:197
#, c-format
msgid "Choose another partition"
msgstr "Дигар бахшро интихоб кунед"

#: diskdrake/interactive.pm:197
#, c-format
msgid "Choose a partition"
msgstr "Бахшро интихоб кунед"

#: diskdrake/interactive.pm:259
#, c-format
msgid "Toggle to normal mode"
msgstr "Зомин ба усули мӯътадил"

#: diskdrake/interactive.pm:259
#, c-format
msgid "Toggle to expert mode"
msgstr "Зомин ба усули мутахассис"

#: diskdrake/interactive.pm:267 diskdrake/interactive.pm:277
#: diskdrake/interactive.pm:1103
#, fuzzy, c-format
msgid "Confirmation"
msgstr "Батанзимдарорӣ"

#: diskdrake/interactive.pm:267
#, c-format
msgid "Continue anyway?"
msgstr "Ба ҳар ҳол давом диҳем?"

#: diskdrake/interactive.pm:272
#, c-format
msgid "Quit without saving"
msgstr "Нигоҳ надошта баромадан"

#: diskdrake/interactive.pm:272
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Ҷадвали бахшро нанавишта бароем?"

#: diskdrake/interactive.pm:277
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Шумо /etc/fstab таъғирёбиҳоро нигоҳ доштан"

#: diskdrake/interactive.pm:284 fs/partitioning_wizard.pm:250
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Шумо бояд аз сари нав худборшавиро ба роҳ монед, то ки тағир додани қисмҳо "
"амалӣгардад"

#: diskdrake/interactive.pm:289
#, c-format
msgid ""
"You should format partition %s.\n"
"Otherwise no entry for mount point %s will be written in fstab.\n"
"Quit anyway?"
msgstr ""
"Шумо бояд бахши %s-ро шаклбандӣ намоед.\n"
"Дар дигар ҳолат дар fstab ягон навиштаҷот барои нуқтаи насбшавии %s навишта "
"намешавад.\n"
"Ба ҳар ҳол бароям?"

#: diskdrake/interactive.pm:302
#, c-format
msgid "Clear all"
msgstr "Тоза кардани ҳамааш"

#: diskdrake/interactive.pm:303
#, c-format
msgid "Auto allocate"
msgstr "Худ ғунҷонӣ"

#: diskdrake/interactive.pm:304 diskdrake/interactive.pm:352
#: interactive/curses.pm:512
#, c-format
msgid "More"
msgstr "Зиёдтар"

#: diskdrake/interactive.pm:309
#, c-format
msgid "Hard drive information"
msgstr "Маълумоти сахтгардон"

#: diskdrake/interactive.pm:341
#, c-format
msgid "All primary partitions are used"
msgstr "Ҳамаи бахшҳои аввала истифода шудааст"

#: diskdrake/interactive.pm:342
#, c-format
msgid "I can not add any more partitions"
msgstr "Ман дигар бахшҳоро илова карда наметавонам"

#: diskdrake/interactive.pm:343
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Барои доштани бахшҳои зиёдтар, барои офаридани бахши васеъшуда яктояшро "
"нобуд кунед"

#: diskdrake/interactive.pm:354
#, c-format
msgid "Reload partition table"
msgstr "Бозкорандохтани ҷадвали бахш"

#: diskdrake/interactive.pm:361
#, c-format
msgid "Detailed information"
msgstr "Маълумоти муфассал"

#: diskdrake/interactive.pm:377 diskdrake/interactive.pm:707
#, c-format
msgid "Resize"
msgstr "Бозандозагирӣ"

#: diskdrake/interactive.pm:378
#, c-format
msgid "Format"
msgstr "Андозакунӣ"

#: diskdrake/interactive.pm:380 diskdrake/interactive.pm:793
#, c-format
msgid "Add to RAID"
msgstr "Илова ба RAID"

#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:811
#, c-format
msgid "Add to LVM"
msgstr "Илова ба LVM"

#: diskdrake/interactive.pm:383
#, c-format
msgid "Delete"
msgstr "Нобуд кардан"

#: diskdrake/interactive.pm:384
#, c-format
msgid "Remove from RAID"
msgstr "Хориҷ аз RAID"

#: diskdrake/interactive.pm:385
#, c-format
msgid "Remove from LVM"
msgstr "Хориҷ аз LVM"

#: diskdrake/interactive.pm:386
#, c-format
msgid "Modify RAID"
msgstr "Ивази RAID"

#: diskdrake/interactive.pm:387
#, c-format
msgid "Use for loopback"
msgstr "Истифода барои loopback "

#: diskdrake/interactive.pm:398
#, c-format
msgid "Create"
msgstr "Офаридан"

#: diskdrake/interactive.pm:442 diskdrake/interactive.pm:444
#, c-format
msgid "Create a new partition"
msgstr "Офаридани бахши нав"

#: diskdrake/interactive.pm:446
#, c-format
msgid "Start sector: "
msgstr "Сектори оғоз: "

#: diskdrake/interactive.pm:449 diskdrake/interactive.pm:876
#, c-format
msgid "Size in MB: "
msgstr "Ҳаҷм дар МБ: "

#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:877
#, c-format
msgid "Filesystem type: "
msgstr "Навъи файлсистемҳо: "

#: diskdrake/interactive.pm:457
#, c-format
msgid "Preference: "
msgstr "Имтиёз: "

#: diskdrake/interactive.pm:460
#, c-format
msgid "Logical volume name "
msgstr "Номи қисми мантиқӣ"

#: diskdrake/interactive.pm:480
#, c-format
msgid ""
"You can not create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
"Шумо метавонед қисми навро тартиб диҳед\n"
"(шумо миқдори зиёдтарини қисмҳои авваларо ба даст даровардаед).\n"
"Сараввал қисми авваларо хориҷ намоед ва қисми васеъшударо тартиб диҳед."

#: diskdrake/interactive.pm:510
#, c-format
msgid "Remove the loopback file?"
msgstr "Файли loopback-ро хориҷ кунем?"

#: diskdrake/interactive.pm:532
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Баъд аз ивази навъи бахши %s ҳама додаҳо дар он бахш гум хоҳад шуд"

#: diskdrake/interactive.pm:545
#, c-format
msgid "Change partition type"
msgstr "Ивази навъи бахш"

#: diskdrake/interactive.pm:547 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Кадом файлсистемро шумо мехоҳед?"

#: diskdrake/interactive.pm:554
#, fuzzy, c-format
msgid "Switching from %s to %s"
msgstr "Гузариш аз ext2 ба ext3"

#: diskdrake/interactive.pm:580 diskdrake/interactive.pm:583
#, c-format
msgid "Which volume label?"
msgstr ""

#: diskdrake/interactive.pm:584
#, fuzzy, c-format
msgid "Label:"
msgstr "Нишона"

#: diskdrake/interactive.pm:598
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Файли loopback %s-ро дар куҷо васл кардан мехоҳед?"

#: diskdrake/interactive.pm:599
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Шумо дар куҷо дастгоҳи %s-ро васл кардан мехоҳед?"

#: diskdrake/interactive.pm:604
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Нуқтаи васлшавиро гирифта намешавад, чунки ин қисм барои loop back истифода\n"
"мегардад. Сараввал loopback-ро хориҷ намоед"

#: diskdrake/interactive.pm:634
#, c-format
msgid "Where do you want to mount %s?"
msgstr "%s-ро дар куҷо васл кардан мехоҳед?"

#: diskdrake/interactive.pm:658 diskdrake/interactive.pm:741
#: fs/partitioning_wizard.pm:146 fs/partitioning_wizard.pm:178
#, c-format
msgid "Resizing"
msgstr "Бозандозагириӣ"

#: diskdrake/interactive.pm:658
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Ҳисоби ҳудуди файлсистеми FAT"

#: diskdrake/interactive.pm:694
#, c-format
msgid "This partition is not resizeable"
msgstr "Ин бахш бозандозагирифта нашаванда аст"

#: diskdrake/interactive.pm:699
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Ҳама додаҳо дар ин бахш бояд пуштибонӣ шуда бошад"

#: diskdrake/interactive.pm:701
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Баъди бозандозагирии бахши %s, ҳамаи додаҳо дар ин бахш гум хоҳад шуд"

#: diskdrake/interactive.pm:708
#, c-format
msgid "Choose the new size"
msgstr "Ҳаҷми навро интихоб кунед"

#: diskdrake/interactive.pm:709
#, c-format
msgid "New size in MB: "
msgstr "Ҳаҷми нав дар МБ: "

#: diskdrake/interactive.pm:710
#, c-format
msgid "Minimum size: %s MB"
msgstr ""

#: diskdrake/interactive.pm:711
#, c-format
msgid "Maximum size: %s MB"
msgstr ""

#: diskdrake/interactive.pm:752 fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
"Барои кафолат додани яклухтии додаҳо баъд аз тағироти андозаи қисм(ҳо), \n"
"санҷиши системи файлӣ ҳангоми худборшавии навбатӣ дар Windows(TM) корандозӣ "
"хоҳад гардид"

#: diskdrake/interactive.pm:793
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Барои илова RAID-и вуҷуддоштаро интихоб кунед"

#: diskdrake/interactive.pm:795 diskdrake/interactive.pm:813
#, c-format
msgid "new"
msgstr "нав"

#: diskdrake/interactive.pm:811
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Барои илова LVM-и вуҷуддоштаро интихоб кунед"

#: diskdrake/interactive.pm:818
#, c-format
msgid "LVM name?"
msgstr "Номи LVM?"

#: diskdrake/interactive.pm:841
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""

#: diskdrake/interactive.pm:843
#, c-format
msgid "Moving physical extents"
msgstr ""

#: diskdrake/interactive.pm:861
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Ин бахш барои loopback истифода шуда наметавонад"

#: diskdrake/interactive.pm:874
#, c-format
msgid "Loopback"
msgstr "Loopback"

#: diskdrake/interactive.pm:875
#, c-format
msgid "Loopback file name: "
msgstr "Номи файли loopback"

#: diskdrake/interactive.pm:880
#, c-format
msgid "Give a file name"
msgstr "Номи файлро диҳед"

#: diskdrake/interactive.pm:883
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
"Файл аллакай бо дигар loopback истифода шудааст, дигарашро интихоб кунед"

#: diskdrake/interactive.pm:884
#, c-format
msgid "File already exists. Use it?"
msgstr "Файл аллакай вуҷуд дорад. Истифода барем?"

#: diskdrake/interactive.pm:916 diskdrake/interactive.pm:919
#, c-format
msgid "Mount options"
msgstr "Хосиятҳои васл"

#: diskdrake/interactive.pm:926
#, c-format
msgid "Various"
msgstr "Ҳаргуна"

#: diskdrake/interactive.pm:991
#, c-format
msgid "device"
msgstr "дастгоҳ"

#: diskdrake/interactive.pm:992
#, c-format
msgid "level"
msgstr "савия"

#: diskdrake/interactive.pm:993
#, c-format
msgid "chunk size in KiB"
msgstr "ҳаҷми пора бо KiB"

#: diskdrake/interactive.pm:1011
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Оҳиста: ин омил хатарнок аст."

#: diskdrake/interactive.pm:1026
#, fuzzy, c-format
msgid "Partitioning Type"
msgstr "Ҷузъбандӣ"

#: diskdrake/interactive.pm:1026
#, c-format
msgid "What type of partitioning?"
msgstr "Кадом навъи ҷузъбандӣ?"

#: diskdrake/interactive.pm:1064
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Пеш аз ҷой гирифтани таъғирёбиҳо шумо бояд боз худбор шавед"

#: diskdrake/interactive.pm:1073
#, c-format
msgid "Partition table of drive %s is going to be written to disk"
msgstr "Ҷадвали бахши гардони %s дар диск навишта мешавад"

#: diskdrake/interactive.pm:1098
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Баъди шаклбандии бахши  %s, ҳама додаҳо дар ин қисм гум хоҳад шуд"

#: diskdrake/interactive.pm:1103 fs/partitioning.pm:48
#, c-format
msgid "Check bad blocks?"
msgstr "Блокҳои бадро тафтиш кунам?"

#: diskdrake/interactive.pm:1117
#, c-format
msgid "Move files to the new partition"
msgstr "Ғеҷонидани файлҳо ба бахши нав"

#: diskdrake/interactive.pm:1117
#, c-format
msgid "Hide files"
msgstr "Руст кардани файлҳо"

#: diskdrake/interactive.pm:1118
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)\n"
"\n"
"You can either choose to move the files into the partition that will be "
"mounted there or leave them where they are (which results in hiding them by "
"the contents of the mounted partition)"
msgstr ""

#: diskdrake/interactive.pm:1133
#, c-format
msgid "Moving files to the new partition"
msgstr "Ғеҷонидани файлҳо ба бахши нав"

#: diskdrake/interactive.pm:1137
#, c-format
msgid "Copying %s"
msgstr "Нусхабардории %s"

#: diskdrake/interactive.pm:1141
#, c-format
msgid "Removing %s"
msgstr "Хориҷи %s"

#: diskdrake/interactive.pm:1155
#, c-format
msgid "partition %s is now known as %s"
msgstr "қисми %s ҳоло ҳамчун %s маълум аст"

#: diskdrake/interactive.pm:1156
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""

#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1244
#, c-format
msgid "Device: "
msgstr "Дастгоҳ: "

#: diskdrake/interactive.pm:1182
#, c-format
msgid "Volume label: "
msgstr "Баландии овоз"

#: diskdrake/interactive.pm:1183
#, c-format
msgid "UUID: "
msgstr ""

#: diskdrake/interactive.pm:1184
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ҳарфи гардони DOS: %s ()\n"

#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1197
#: diskdrake/interactive.pm:1263
#, c-format
msgid "Type: "
msgstr "Навъ: "

#: diskdrake/interactive.pm:1192 diskdrake/interactive.pm:1248
#, c-format
msgid "Name: "
msgstr "Ном: "

#: diskdrake/interactive.pm:1199
#, c-format
msgid "Start: sector %s\n"
msgstr "Оғоз: сектор %s\n"

#: diskdrake/interactive.pm:1200
#, c-format
msgid "Size: %s"
msgstr "Ҳаҷм: %s"

#: diskdrake/interactive.pm:1202
#, c-format
msgid ", %s sectors"
msgstr ", %s сектор"

#: diskdrake/interactive.pm:1204
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Силиндри %d то %d\n"

#: diskdrake/interactive.pm:1205
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""

#: diskdrake/interactive.pm:1206
#, c-format
msgid "Formatted\n"
msgstr "Шаклбаста\n"

#: diskdrake/interactive.pm:1207
#, c-format
msgid "Not formatted\n"
msgstr "Шаклбастанашуда\n"

#: diskdrake/interactive.pm:1208
#, c-format
msgid "Mounted\n"
msgstr "Васл шуда\n"

#: diskdrake/interactive.pm:1209
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"

#: diskdrake/interactive.pm:1214
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"файл(ҳо)и loopback:\n"
"   %s\n"

#: diskdrake/interactive.pm:1215
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Бахш ба таври пешфарз худбор шуд\n"
"    (барои MS-DOS худборшавӣ, на барои lilo)\n"

#: diskdrake/interactive.pm:1217
#, c-format
msgid "Level %s\n"
msgstr "Савияи %s\n"

#: diskdrake/interactive.pm:1218
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Ҳаҷми пора %d KiB\n"

#: diskdrake/interactive.pm:1219
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-дискҳои %s\n"

#: diskdrake/interactive.pm:1221
#, c-format
msgid "Loopback file name: %s"
msgstr "Номи файли loopback: %s"

#: diskdrake/interactive.pm:1224
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Имкониятҳо, ин бахш\n"
"бахши Гардон аст, шумо бояд\n"
"инро ба ҳоли худ гузоред.\n"

#: diskdrake/interactive.pm:1227
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Ин бахши махсусуи худроҳандоз\n"
"барои худборшавии дучанди\n"
"системи шумо\n"

#: diskdrake/interactive.pm:1236
#, c-format
msgid "Free space on %s (%s)"
msgstr ""

#: diskdrake/interactive.pm:1245
#, c-format
msgid "Read-only"
msgstr "Танҳо барои хониш"

#: diskdrake/interactive.pm:1246
#, c-format
msgid "Size: %s\n"
msgstr "Ҳаҷм: %s\n"

#: diskdrake/interactive.pm:1247
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ҳандаса: %s силиндр, %s сар, %s сектор\n"

#: diskdrake/interactive.pm:1249
#, fuzzy, c-format
msgid "Medium type: "
msgstr "Навъи файлсистемҳо: "

#: diskdrake/interactive.pm:1250
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-дискҳо %s\n"

#: diskdrake/interactive.pm:1251
#, c-format
msgid "Partition table type: %s\n"
msgstr "Навъи ҷадвали бахшҳо: %s\n"

#: diskdrake/interactive.pm:1252
#, c-format
msgid "on channel %d id %d\n"
msgstr "дар канали %d шиносномаи %d\n"

#: diskdrake/interactive.pm:1295
#, c-format
msgid "Filesystem encryption key"
msgstr "Калиди рамздоштаи Файлсистем"

#: diskdrake/interactive.pm:1296
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Калиди ба рамздарории системи файлии худро интихоб намоед"

#: diskdrake/interactive.pm:1299
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ин калиди ба рамз дароварда шуда бениҳоят содда аст (бояд ақаллан бо "
"аломатҳои%d дароз бошад)"

#: diskdrake/interactive.pm:1300
#, c-format
msgid "The encryption keys do not match"
msgstr "Калидҳои рамздошта мувофиқ нестанд"

#: diskdrake/interactive.pm:1303
#, c-format
msgid "Encryption key"
msgstr "Калиди Encryption"

#: diskdrake/interactive.pm:1304
#, c-format
msgid "Encryption key (again)"
msgstr "Калиди Encryption (боз)"

#: diskdrake/interactive.pm:1306
#, c-format
msgid "Encryption algorithm"
msgstr "Алгоритми Рамзикунонӣ"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Ивази навъ"

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:129 interactive.pm:546
#: interactive/curses.pm:260 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 ugtk2.pm:415 ugtk2.pm:517
#: ugtk2.pm:526 ugtk2.pm:813
#, c-format
msgid "Cancel"
msgstr "Бекор кардан"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr ""
"Воридшавӣ бо истифодаи номи корванди %s ғайри имкон аст (гузарвожаи "
"нодуруст?)"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Ҳақиқӣ будани соҳибият талаб карда мешавад"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Кадом номи корванд"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Дигараш"

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Марҳамат карда номи корванди худ, гузарвожа ва номи фазоро барои дастёби "
"кардан бо ин соҳиб, ворид намоед."

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Номи корванд"

#: diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Домен"

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Ҷустуҷӯи хидматгорҳо"

#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Хидматрасонҳои навро ҷустуҷӯ кунед"

#: do_pkgs.pm:19 do_pkgs.pm:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Қуттии %s-ро бояд кор гузорӣ намуд. Оё шумо хоҳиши онро коргузорӣ намудан "
"доред?"

#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60
#, c-format
msgid "Could not install the %s package!"
msgstr "Коргузории бастаи %s ғайри имкон аст!"

#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Бастаи барномаҳои %s-и ҳатмӣ мавҷуд нестанд"

#: do_pkgs.pm:39
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Қуттиҳои зерин бояд коргузорӣ гардад:\n"

#: do_pkgs.pm:221
#, c-format
msgid "Installing packages..."
msgstr "Қуттиҳо коргузорӣ мешавад..."

#: do_pkgs.pm:267
#, c-format
msgid "Removing packages..."
msgstr "Бастаи барномаҳо хориҷ мешаванд..."

#: fs/any.pm:17
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Хатогӣ рух дод - ягон дастгоҳи аслие, барои офаридани файлсистеми нав ёфт "
"нашуд. Барои фаҳмидани ин муаммо сахтафзорро санҷида бинед"

#: fs/any.pm:75 fs/partitioning_wizard.pm:59
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Шояд шумо қисми FAT-ро дошта бошед, ки дар /boot/efi васл шудааст"

#: fs/format.pm:63 fs/format.pm:70
#, c-format
msgid "Formatting partition %s"
msgstr "Шаклбандии бахши %s"

#: fs/format.pm:67
#, c-format
msgid "Creating and formatting file %s"
msgstr "Файли %s офарида мешавад ва шаклбандӣ мегардад"

#: fs/format.pm:122
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "Ман намедонам чӣ хел %s-ро бо навъи %s шакл бандам"

#: fs/format.pm:127 fs/format.pm:129
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s шаклбандии %s нагузашт"

#: fs/loopback.pm:24
#, c-format
msgid "Circular mounts %s\n"
msgstr "Насбҳои пайвасткунвнда %s\n"

#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Васлкунии бахши %s"

#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "насбкунии бахши %s дар феҳристи %s бо нокомӣ анҷомид"

#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Тафтиши %s"

#: fs/mount.pm:119 partition_table.pm:403
#, c-format
msgid "error unmounting %s: %s"
msgstr "ҷудокунии хатои %s: %s"

#: fs/mount.pm:134
#, c-format
msgid "Enabling swap partition %s"
msgstr "Даргиронидани бахши swap %s"

#: fs/mount_options.pm:115
#, fuzzy, c-format
msgid "Use an encrypted file system"
msgstr ""
"Шумо файл системи рамздоштаро барои нуқтаи васли %s истифода бурда "
"наметавонед"

#: fs/mount_options.pm:117
#, c-format
msgid "Flush write cache on file close"
msgstr ""

#: fs/mount_options.pm:119
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr ""

#: fs/mount_options.pm:121
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Дар ин системи файлӣ вақти дастрасшавиро ба inode нав накунед\n"
"(яъне, барои ба даст даровардани роҳи тезтар ба дастгоҳи чархиши ахборот бо "
"мақсади тезонидани кори хидматрасонҳои ахборот)."

#: fs/mount_options.pm:124
#, fuzzy, c-format
msgid ""
"Update inode access times on this filesystem in a more efficient way\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Дар ин системи файлӣ вақти дастрасшавиро ба inode нав накунед\n"
"(яъне, барои ба даст даровардани роҳи тезтар ба дастгоҳи чархиши ахборот бо "
"мақсади тезонидани кори хидматрасонҳои ахборот)."

#: fs/mount_options.pm:127
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""
"Танҳо бо роҳи саҳеҳ метавон насб намуд (яъне, интихоби а ба насби системи\n"
"файлӣ намеорад)."

#: fs/mount_options.pm:130
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""
"Дар системи файлӣ дастгоҳҳои блокии рамзнок ё ин ки махсусро маънидод "
"накардан."

#: fs/mount_options.pm:132
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Иҷроиши дуиҳои дилхоҳро дар системи файлии васл шуда манъ намоед. Ин\n"
"интихоб шояд барои корванди системҳои файлӣ дошта муфид бошад, ки он\n"
"дуиҳои барои меъмории аз худаш фарқкунандаро дошта бошад."

#: fs/mount_options.pm:136
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""
"Ба битҳои set-user-identifier ё set-group-identifier иҷозат надиҳед, то ки "
"онҳо амалӣ\n"
"гарданд. (Аз афташ ин хатарнок нест, лекин дар амалия он бештар хатарнок "
"мегардад,\n"
"агар шумо suidperl (1)-ро ба танзим дароварда бошед.)"

#: fs/mount_options.pm:140
#, c-format
msgid "Mount the file system read-only."
msgstr "Системаи файлиро бо усули танҳо-барои-хониш насб кунед."

#: fs/mount_options.pm:142
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr "Ҳамаи I/O барои системаи файлӣ боянд ҳамзамон иҷро гарданд."

#: fs/mount_options.pm:144
#, c-format
msgid "Allow every user to mount and umount the file system."
msgstr ""

#: fs/mount_options.pm:146
#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr ""

#: fs/mount_options.pm:148
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""

#: fs/mount_options.pm:150
#, c-format
msgid "Support \"user.\" extended attributes"
msgstr ""

#: fs/mount_options.pm:152
#, c-format
msgid "Give write access to ordinary users"
msgstr "Ба корванди оддӣ иҷозати навиштан диҳед"

#: fs/mount_options.pm:154
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Ба корванди оддӣ иҷозати навиштан диҳед"

#: fs/mount_point.pm:80
#, c-format
msgid "Duplicate mount point %s"
msgstr "Дунусха кардани нуқтаи насбшавӣ %s"

#: fs/mount_point.pm:95
#, c-format
msgid "No partition available"
msgstr "Ягон бахшбандӣ дастрас нест"

#: fs/mount_point.pm:98
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Барои ёфтани нуқтаҳои насб қисмҳо пуйиш мегардад"

#: fs/mount_point.pm:105
#, c-format
msgid "Choose the mount points"
msgstr "Нуқтаи насбкуниро интихоб намоед"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Бахшҳоеро, ки шаклбандӣ кардан мехоҳед, интихоб намоед"

#: fs/partitioning.pm:75
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""
"Тафтиши системи файлии %s бемуваффақият анҷом ёфт. Шумо хоҳиши ислоҳ "
"намудани хатогиҳоро доред? (эҳтиёт шавед, чунки шумо метавонед додаҳоро аз "
"даст диҳед)"

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"swap-фазо барои ба итмом расонидани коргузорӣ кофӣ нест, лутфан илова намоед"

#: fs/partitioning_wizard.pm:51
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Шояд шумо қисми решагиро дошта бошед.\n"
"Барои ин қисмеро офаред (ё ба мавҷудбуда ангушт занед).\n"
"Сониян, амалиёти ``Нуқтаи васлшавӣ ва барпо сохтани онро дар `/'-ро интихоб "
"намоед"

#: fs/partitioning_wizard.pm:56
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Шумо бахши мубодила надоред.\n"
"\n"
"Ба ҳар ҳол давом диҳем?"

#: fs/partitioning_wizard.pm:84
#, c-format
msgid "Use free space"
msgstr "Ҷои озодро истифод бурдан"

#: fs/partitioning_wizard.pm:86
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Барои ҷойгир намудани қисмҳои нав ҷои изофа кофӣ нест"

#: fs/partitioning_wizard.pm:94
#, c-format
msgid "Use existing partitions"
msgstr "Бахшбандиҳои ҳозир бударо истифода баред"

#: fs/partitioning_wizard.pm:96
#, c-format
msgid "There is no existing partition to use"
msgstr "Барои истифодабарӣ ягон қисми мавҷудбуда нест"

#: fs/partitioning_wizard.pm:103
#, c-format
msgid "Use the Microsoft Windows® partition for loopback"
msgstr "Қисми Microsoft Windows®-ро барои loopback истифода бурдан"

#: fs/partitioning_wizard.pm:106
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Кадом қисмро шумо барои Linux4Win истифода бурдан мехоҳед?"

#: fs/partitioning_wizard.pm:108
#, c-format
msgid "Choose the sizes"
msgstr "Андозаҳоро интихоб намоед"

#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Root partition size in MB: "
msgstr "Андозаи қисми решагӣ дар MB: "

#: fs/partitioning_wizard.pm:110
#, c-format
msgid "Swap partition size in MB: "
msgstr "Андозаи қисми swap дар MB: "

#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr "Қисми FAT барои истифодаи loopback мавҷуд нест (ё ин ки ҷой кофӣ нест)"

#: fs/partitioning_wizard.pm:127
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Фазои холиро дар бахши Windows истифода баред"

#: fs/partitioning_wizard.pm:129
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Андозаи кадоме аз қисмҳоро шумо тағир додан мехоҳед?"

#: fs/partitioning_wizard.pm:143
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occurred: %s"
msgstr ""
"Барномаи тағирдиҳии андозаи FAT ин қисмро кор карда бароварда метавонад, \n"
"хатогии зерин ба амал омад: %s"

#: fs/partitioning_wizard.pm:146
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Андозаи бахшбандии Microsoft Windows® ҳисоб шуда истодааст"

#: fs/partitioning_wizard.pm:153
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the Mandriva Linux installation."
msgstr ""
"Қисми Microsoft Windows®-и шумо бениҳоят тика гардидааст. Лутфан, компютери "
"худро дар зери Microsoft Windows® аз сари нав оғоз намоед, ``defrag''-ро ба "
"кор андозед ва сониян такроран коргузории Mandriva Linux-ро мавриди "
"истифодабарӣ қарор диҳед."

#: fs/partitioning_wizard.pm:156
#, c-format
msgid ""
"WARNING!\n"
"\n"
"\n"
"Your Microsoft Windows® partition will be now resized.\n"
"\n"
"\n"
"Be careful: this operation is dangerous. If you have not already done so, "
"you first need to exit the installation, run \"chkdsk c:\" from a Command "
"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
"optionally run defrag, then restart the installation. You should also backup "
"your data.\n"
"\n"
"\n"
"When sure, press %s."
msgstr ""
"ОГОҲӢ!\n"
"\n"
"\n"
"Ҳоло DrakX андозаи қисми Windows-и шуморо тағир медиҳад.\n"
"\n"
"\n"
"Эҳтиёт бошед, ки ин амалиёт хатарнок аст. Агар шумо инро иҷро карда набошед, "
"онгоҳ ба шумо лозим аст. то ки коргузориро тарк намоед, \"chkdsk c:\"-ро дар "
"сатри фармони дар зери Windows буда корандозӣ кунед (дар назар доред, ки "
"корандозии барномаи графикии \"scandisk\"\n"
"кофӣ нест, лекин ҳатман \"chkdsk\"-ро дар Эъломи Фармонӣ истифода баред!) "
"Интихобан defrag-ро корандозӣ намоед, сониян коргузориро боз оғоз намоед. "
"Инчунин шумо бояд додаҳои худро нигоҳ доред.\n"
"\n"
"\n"
"Вақте ки боварӣ ҳосил кардед ба %s ангушт занед."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:165 interactive.pm:545 interactive/curses.pm:263
#: ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Навбатӣ"

#: fs/partitioning_wizard.pm:168
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Ҷузъбандӣ"

#: fs/partitioning_wizard.pm:168
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Шумо кадом ҳаҷмро барои Microsoft Windows® доштан мехоҳед ҷузъбандии %s?"

#: fs/partitioning_wizard.pm:169
#, c-format
msgid "Size"
msgstr "Андоза"

#: fs/partitioning_wizard.pm:178
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Андозаи қисми Microsoft Windows® тағир меёбад"

#: fs/partitioning_wizard.pm:183
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Тағир додани андозаи FAT бемуваффақият анҷом ёфт: %s"

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Барои тағири андозаи бахши FAT мавҷуд нест (ё ки ҷои кофӣ намондааст)"

#: fs/partitioning_wizard.pm:203
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Microsoft Windows®-ро хориҷ намоед"

#: fs/partitioning_wizard.pm:203
#, c-format
msgid "Erase and use entire disk"
msgstr "Тамоми дискро тоза намоед ва истифода баред"

#: fs/partitioning_wizard.pm:205
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Шумо зиёда аз як диски сахт доред. Дар кадоме аз онҳо шумо коргузории Linux-"
"ро ба амал оварданӣ ҳастед?"

#: fs/partitioning_wizard.pm:210 fsedit.pm:570
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "ҲАМАИ қисмҳои мавҷуд буда ва додаҳои онҳо дар гардони %s гум мешаванд"

#: fs/partitioning_wizard.pm:220
#, c-format
msgid "Custom disk partitioning"
msgstr "Ҷузъбандии дастии диск"

#: fs/partitioning_wizard.pm:226
#, c-format
msgid "Use fdisk"
msgstr "fdisk-ро истифода намудан"

#: fs/partitioning_wizard.pm:229
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Акнун шумо метавонед %s-ро бахшбандӣ намоед.\n"
"Баъд аз итмоми он ба воситаи истифодаи `w' нигоҳ доштанро фаромӯш накунед"

#: fs/partitioning_wizard.pm:269
#, c-format
msgid "I can not find any room for installing"
msgstr "Ягон ҷой барои коргузорӣ пайдо карда натавониста истодаам"

#: fs/partitioning_wizard.pm:278
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Устози ҷузъбандии DrakX ба қарорҳои зерин омад:"

#: fs/partitioning_wizard.pm:287
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ҷузъбандӣ бемувафаққият анҷом ёфт: %s"

#: fs/type.pm:370
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Шумо JFS-ро барои базшҳои аз 16МБ хурд истифода бурда наметавонед"

#: fs/type.pm:371
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Шумо ReiserFS-ро барои бахшҳои аз 32МБ хурд истифода бурда наметавонед"

#: fsedit.pm:23
#, c-format
msgid "simple"
msgstr "содда"

#: fsedit.pm:27
#, c-format
msgid "with /usr"
msgstr "бо /usr"

#: fsedit.pm:32
#, c-format
msgid "server"
msgstr "хидматрасон"

#: fsedit.pm:116
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""

#: fsedit.pm:223
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""
"Ман ҷадвалбандии бахшҳоро дар дастгоҳи %s хонда натавониста истодаам, он "
"барои ман хеле хароб гаштааст :(\n"
"Ман кӯшиш мекунам, ки давом диҳам, ба воситаи пок кардани бахшҳои бад (ҲАМАИ "
"ДОДАҲО гум мешаванд!).\n"
"Ҳалли дигари ин ба DrakX иҷозат надодани тағирдиҳии ҷадвалбандии бахшҳо "
"мебошад.\n"
"(хатогӣ ин %s)\n"
"\n"
"Шумо розиед, ки ҳама бахшҳоро аз даст диҳед?\n"

#: fsedit.pm:397
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Нуқтаи васлшавӣ бояд сар шавад бо /"

#: fsedit.pm:398
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Нуқтаҳои васлшавӣ бояд танҳо рамзҳои ҳарфу рақамро дошта бошад"

#: fsedit.pm:399
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Аллакай бахш бо нуқтаи васли %s ҳаст \n"

#: fsedit.pm:403
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"Шумо бахши нармафзори RAID-ро ҳамчун root (/) интихоб кардед.\n"
"Ягон корандози boot инро бе бахши /boot даста карда наметевонад.\n"
"Барои иловаи бахши /boot эҳтиёт бошед"

#: fsedit.pm:409
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""

#: fsedit.pm:411
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this when the volume spans physical "
"volumes.\n"
"You should create a /boot partition first"
msgstr ""
"Шумо бахши нармафзори RAID-ро ҳамчун root (/) интихоб кардед.\n"
"Ягон корандози boot инро бе бахши /boot даста карда наметевонад.\n"
"Барои иловаи бахши /boot эҳтиёт бошед"

#: fsedit.pm:415 fsedit.pm:417
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ин феҳрист бояд дар дохили файлсистеми root бошад"

#: fsedit.pm:419 fsedit.pm:421
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Ба Шумо файлсистеми ҳақиқии (ext2/ext3, reiserfs, xfs, or jfs) барои ин "
"нуқтаи васл лозим аст\n"

#: fsedit.pm:423
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""
"Шумо файл системи рамздоштаро барои нуқтаи васли %s истифода бурда "
"наметавонед"

#: fsedit.pm:487
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Барои худ-ғунҷонӣ ҷои холии кофӣ нест"

#: fsedit.pm:489
#, c-format
msgid "Nothing to do"
msgstr "Ҳеҷ чиз барои иҷроиш"

#: harddrake/data.pm:64
#, c-format
msgid "SATA controllers"
msgstr "SATA танзимкунандаҳо"

#: harddrake/data.pm:73
#, c-format
msgid "RAID controllers"
msgstr "RAID танзимкунандаҳо"

#: harddrake/data.pm:83
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "нозирони (E)IDE/ATA"

#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "Модели корт:"

#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Назоратчиёни Firewire"

#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "нозирони PCMCIA"

#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "нозирони SCSI"

#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Назоратчиёни USB"

#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB даргоҳҳо"

#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Нозирони SMBus"

#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Пулҳо ва нозирони системавӣ"

#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Дискет"

#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"

#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Диск"

#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""

#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"

#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD-и менавиштагӣ"

#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"

#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Лента"

#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Назоратчиёни AGP"

#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Видеокарт"

#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Корти DVB"

#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Тв корт"

#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Дигар дастгоҳҳои Бисёрмуҳита"

#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Харитаи овоздор"

#: harddrake/data.pm:312
#, c-format
msgid "Webcam"
msgstr "Наворгири вебӣ"

#: harddrake/data.pm:326
#, c-format
msgid "Processors"
msgstr "Пардозанда"

#: harddrake/data.pm:336
#, c-format
msgid "ISDN adapters"
msgstr "созгорҳои ISDN"

#: harddrake/data.pm:347
#, c-format
msgid "USB sound devices"
msgstr ""

#: harddrake/data.pm:356
#, c-format
msgid "Radio cards"
msgstr "Корти радио"

#: harddrake/data.pm:365
#, c-format
msgid "ATM network cards"
msgstr "Кортҳои шабакаи ATM"

#: harddrake/data.pm:374
#, c-format
msgid "WAN network cards"
msgstr "Кортҳои шабакаи WAN"

#: harddrake/data.pm:383
#, c-format
msgid "Bluetooth devices"
msgstr ""

#: harddrake/data.pm:392
#, c-format
msgid "Ethernetcard"
msgstr "Харитаи ethernet"

#: harddrake/data.pm:409
#, c-format
msgid "Modem"
msgstr "Модем"

#: harddrake/data.pm:419
#, c-format
msgid "ADSL adapters"
msgstr "Созгорҳои ADSL"

#: harddrake/data.pm:431
#, c-format
msgid "Memory"
msgstr "Ҳофиза"

#: harddrake/data.pm:440
#, c-format
msgid "Printer"
msgstr "Чопгар"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:454
#, c-format
msgid "Game port controllers"
msgstr ""

#: harddrake/data.pm:463
#, c-format
msgid "Joystick"
msgstr "Сукуни ҳидоят"

#: harddrake/data.pm:473
#, c-format
msgid "Keyboard"
msgstr "Забонак"

#: harddrake/data.pm:486
#, c-format
msgid "Tablet and touchscreen"
msgstr ""

#: harddrake/data.pm:495
#, c-format
msgid "Mouse"
msgstr "Муш"

#: harddrake/data.pm:509
#, c-format
msgid "Biometry"
msgstr ""

#: harddrake/data.pm:517
#, c-format
msgid "UPS"
msgstr "UPS"

#: harddrake/data.pm:526
#, c-format
msgid "Scanner"
msgstr "Пуйишгар"

#: harddrake/data.pm:537
#, c-format
msgid "Unknown/Others"
msgstr "Номаълум/Дигарон"

#: harddrake/data.pm:565
#, c-format
msgid "cpu # "
msgstr "cpu # "

#: harddrake/sound.pm:285
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Марҳамат карда Интизор шавед... Батанзимдарорӣ истифода шуда истодааст"

#: harddrake/sound.pm:346
#, c-format
msgid "Enable PulseAudio"
msgstr ""

#: harddrake/sound.pm:350
#, c-format
msgid "Automatic routing from ALSA to PulseAudio"
msgstr ""

#: harddrake/sound.pm:355
#, c-format
msgid "Enable 5.1 sound with Pulse Audio"
msgstr ""

#: harddrake/sound.pm:360
#, c-format
msgid "Enable user switching for audio applications"
msgstr ""

#: harddrake/sound.pm:365
#, c-format
msgid "Reset sound mixer to default values"
msgstr ""

#: harddrake/sound.pm:370
#, c-format
msgid "Trouble shooting"
msgstr "Ҷустуҷӯ ва барҳам додани камбудӣ"

#: harddrake/sound.pm:377
#, c-format
msgid "No alternative driver"
msgstr "Гардонандаи интихобӣ нест"

#: harddrake/sound.pm:378
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Барои корти овоздори шумо (%s) ронандаи алтернативии OSS/ALSA мавҷуд нест, "
"ки ҳоло \"%s\"-ро мавриди истифода қарор додааст"

#: harddrake/sound.pm:385
#, c-format
msgid "Sound configuration"
msgstr "Танзимдарории Садо"

#: harddrake/sound.pm:387
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Дар ин ҷо шумо метавонед ронандаи алтернативиро интихоб намоед (ё OSS ё ин "
"ки ALSA) барои корти овоздори худ (%s)."

#. -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
#: harddrake/sound.pm:392
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Ҳоло корти шумо гардони %s\"%s\"-ро истифода мебарад (гардони пешфарзӣ барои "
"корти шумо \"%s\" мебошад)"

#: harddrake/sound.pm:394
#, c-format
msgid ""
"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.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS api\n"
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
"OSS (Системаи Кушодаи Овоз) якумин API-и овозӣ буд. Он API-и овозие, ки аз "
"СО мустақил мебошад (дар бисёр системаҳои UNIX(tm) дастрас аст), лекин он "
"хеле содда ва маҳдуди API-и мебошад.\n"
"Боз бештар гардонандаҳои OSS чархаро азнав мекушоянд.\n"
"\n"
"ALSA (Сохтори Пешрафтаи Овозии Linux) ин сохтори модулест, ки маҳдудаи "
"васеъи кортҳои\n"
"ISA, USB ва PCI-ро пуштибонӣ мекунад.\n"
"\n"
"Инчунин он API-и баландтар назар ба OSS пешкаш мекунад.\n"
"\n"
"Барои истифодаи alsa инҳоро истифода бурдан мумкин аст:\n"
"- api-и кӯҳна бо ҳамсозии OSS \n"
"- api ALSA-и нав, ки хусусиятҳои пешрафтаро пешкаш мекунад, лекин истифодаи "
"китобхонаи ALSA-ро талаб мекунад.\n"

#: harddrake/sound.pm:408 harddrake/sound.pm:491
#, c-format
msgid "Driver:"
msgstr "Гардонанда:"

#: harddrake/sound.pm:422
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
"Ронандаи кӯҳнаи \"%s\" ба рӯйхати сиёҳ дохил шуд.\n"
"\n"
"Дар хусуси он ҳисобот тартиб дода шудааст, ки асосро ҳангоми ба кор "
"наандохтанпешакӣ огоҳ менамояд.\n"
"\n"
"Ронандаи нави \"%s\" танҳо ҳангоми кор андохтани навбатӣ истифода хоҳад шуд."

#: harddrake/sound.pm:430
#, c-format
msgid "No open source driver"
msgstr "Ронанда бо сарчашмаи аввалаи кушода мавҷуд нест"

#: harddrake/sound.pm:431
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"Барои корти овозии (%s)-и шумо гардонандаи озод мавҷуд нест, лекин "
"гардонандаи шахсӣ дар \"%s\" ҳаст."

#: harddrake/sound.pm:434
#, c-format
msgid "No known driver"
msgstr "Ронандаи номаълум"

#: harddrake/sound.pm:435
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Барои корти овоздори шумо ронандаи маълум мавҷуд нест (%s)"

#: harddrake/sound.pm:450
#, c-format
msgid "Sound trouble shooting"
msgstr "Ҳалли муаммои ба овоз тааллуқ дошта"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:453
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
"uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services are configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
"Санҷиши классикии хатогиҳои овоз ба воситаи сар додани фармонои зерин "
"иҷромешавад:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" ба шумо хабар медиҳад, ки кадом ронанда "
"харитаишуморо аз рӯи пешфарз истифода мебарад\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" ба шумо хабар медиҳад, ки кадом "
"ронанда\n"
"ҳоло истифода мегардад\n"
"\n"
"- \"/sbin/lsmod\" ба шумо имкон медиҳад санҷед, ки оё модул (ронанда) ба кор "
"андохташудааст\n"
"\n"
"- \"/sbin/chkconfig --list sound\" и \"/sbin/chkconfig --list alsa\"\n"
"ба шумо хабар медиҳад хидматрасонҳои sound мавҷуд буданд ва alsa барои оғоз\n"
"намудан дар initlevel 3 ба танзим дароварда шудааст ё ин ки не\n"
"\n"
"- \"aumix -q\" ба шумо хабар медиҳад, ки баландии садо ба роҳ монда шудааст "
"ё не\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" ба шумо хабар медиҳад, ки кадом барнома "
"харитаиовоздорро мавриди истифода қарор додааст.\n"

#: harddrake/sound.pm:480
#, c-format
msgid "Let me pick any driver"
msgstr "Дигар ронандаро интихоб намудан"

#: harddrake/sound.pm:483
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Интихоби ронандаи ихтиёрӣ"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:486
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
"Агар шумо дар ҳақиқат фикр намоед, ки кадом ронанда барои корти шумо дуруст "
"аст шумо метавонед онро аз рӯйхати дар боло буда интихоб намоед.\n"
"\n"
"Ронандаи ҷорӣ барои корти \"%s\" овоздори шумо \"%s\" мебошад"

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Автомуаяйнамоӣ"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Номаълум|Одатӣ"

#: harddrake/v4l.pm:130
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "|CPH05X (bt878) номаълум[аксарияти истеҳсолкунандагон]"

#: harddrake/v4l.pm:131
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Номаълум|CPH06X (bt878) [аксарияти истеҳсолкунандагон]"

#: harddrake/v4l.pm:475
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""