aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/Localconfig.pm
blob: 7df9e073617bf9305e89f7533f29bc513552b5a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Initial Developer of the Original Code is Everything Solved.
# Portions created by Everything Solved are Copyright (C) 2006
# Everything Solved. All Rights Reserved.
#
# The Original Code is the Bugzilla Bug Tracking System.
#
# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>

package Bugzilla::Install::Localconfig;

# NOTE: This package may "use" any modules that it likes. However,
# all functions in this package should assume that:
#
# * The data/ directory does not exist.
# * Templates are not available.
# * Files do not have the correct permissions
# * The database is not up to date

use strict;

use Bugzilla::Constants;
use Bugzilla::Install::Util qw(bin_loc);

use Data::Dumper;
use File::Basename qw(dirname);
use IO::File;
use Safe;

use base qw(Exporter);

our @EXPORT_OK = qw(
    read_localconfig
    update_localconfig
);

use constant LOCALCONFIG_VARS => (
    {
        name    => 'create_htaccess',
        default => 1,
        desc    => <<EOT
# If you are using Apache as your web server, Bugzilla can create .htaccess
# files for you that will instruct Apache not to serve files that shouldn't
# be accessed from the web browser (like your local configuration data and non-cgi
# executable files).  For this to work, the directory your Bugzilla
# installation is in must be within the jurisdiction of a <Directory> block
# in the httpd.conf file that has 'AllowOverride Limit' in it.  If it has
# 'AllowOverride All' or other options with Limit, that's fine.
# (Older Apache installations may use an access.conf file to store these
# <Directory> blocks.)
# If this is set to 1, Bugzilla will create these files if they don't exist.
# If this is set to 0, Bugzilla will not create these files.
EOT
    },
    {
        name    => 'webservergroup',
        default => ON_WINDOWS ? '' : 'apache',
        desc    => q{# This is the group your web server runs as.
# If you have a Windows box, ignore this setting.
# If you do not have access to the group your web server runs under,
# set this to "". If you do set this to "", then your Bugzilla installation
# will be _VERY_ insecure, because some files will be world readable/writable,
# and so anyone who can get local access to your machine can do whatever they
# want. You should only have this set to "" if this is a testing installation
# and you cannot set this up any other way. YOU HAVE BEEN WARNED!
# If you set this to anything other than "", you will need to run checksetup.pl
# as} . ROOT_USER . qq{, or as a user who is a member of the specified group.\n}
    },
    {
        name    => 'db_driver',
        default => 'mysql',
        desc    => <<EOT
# What SQL database to use. Default is mysql. List of supported databases
# can be obtained by listing Bugzilla/DB directory - every module corresponds
# to one supported database and the name corresponds to a driver name.
EOT
    },
    {
        name    => 'db_host',
        default => 'localhost',
        desc    => 
            "# The DNS name of the host that the database server runs on.\n"
    },
    {
        name    => 'db_name',
        default => 'bugs',
        desc    => "# The name of the database\n"
    },
    {
        name    => 'db_user',
        default => 'bugs',
        desc    => "# Who we connect to the database as.\n"
    },
    {
        name    => 'db_pass',
        default => '',
        desc    => <<EOT
# Enter your database password here. It's normally advisable to specify
# a password for your bugzilla database user.
# If you use apostrophe (') or a backslash (\\) in your password, you'll
# need to escape it by preceding it with a '\\' character. (\\') or (\\)
# (Far simpler just not to use those characters.)
EOT
    },
    {
        name    => 'db_port',
        default => 0,
        desc    => <<EOT
# Sometimes the database server is running on a non-standard port. If that's
# the case for your database server, set this to the port number that your
# database server is running on. Setting this to 0 means "use the default
# port for my database server."
EOT
    },
    {
        name    => 'db_sock',
        default => '',
        desc    => <<EOT
# MySQL Only: Enter a path to the unix socket for MySQL. If this is
# blank, then MySQL's compiled-in default will be used. You probably
# want that.
EOT
    },
    {
        name    => 'db_check',
        default => 1,
        desc    => <<EOT
# Should checksetup.pl try to verify that your database setup is correct?
# (with some combinations of database servers/Perl modules/moonphase this
# doesn't work)
EOT
    },
    {
        name    => 'index_html',
        default => 0,
        desc    => <<EOT
# With the introduction of a configurable index page using the
# template toolkit, Bugzilla's main index page is now index.cgi.
# Most web servers will allow you to use index.cgi as a directory
# index, and many come preconfigured that way, but if yours doesn't
# then you'll need an index.html file that provides redirection
# to index.cgi. Setting \$index_html to 1 below will allow
# checksetup.pl to create one for you if it doesn't exist.
# NOTE: checksetup.pl will not replace an existing file, so if you
#       wish to have checksetup.pl create one for you, you must
#       make sure that index.html doesn't already exist
EOT
    },
    {
        name    => 'cvsbin',
        default => \&_get_default_cvsbin,
        desc    => <<EOT
# For some optional functions of Bugzilla (such as the pretty-print patch
# viewer), we need the cvs binary to access files and revisions.
# Because it's possible that this program is not in your path, you can specify
# its location here.  Please specify the full path to the executable.
EOT
    },
    {
        name    => 'interdiffbin',
        default => \&_get_default_interdiffbin,
        desc    => <<EOT
# For some optional functions of Bugzilla (such as the pretty-print patch
# viewer), we need the interdiff binary to make diffs between two patches.
# Because it's possible that this program is not in your path, you can specify
# its location here.  Please specify the full path to the executable.
EOT
    },
    {
        name    => 'diffpath',
        default => \&_get_default_diffpath,
        desc    => <<EOT
# The interdiff feature needs diff, so we have to have that path.
# Please specify the directory name only; do not use trailing slash.
EOT
    },
);

use constant OLD_LOCALCONFIG_VARS => qw(
    mysqlpath
    contenttypes
    pages
    severities platforms opsys priorities
);

sub read_localconfig {
    my ($include_deprecated) = @_;
    my $filename = bz_locations()->{'localconfig'};

    my %localconfig;
    if (-e $filename) {
        my $s = new Safe;
        # Some people like to store their database password in another file.
        $s->permit('dofile');

        $s->rdo($filename);
        if ($@ || $!) {
            my $err_msg = $@ ? $@ : $!;
            die <<EOT;
An error has occurred while reading your 'localconfig' file.  The text of 
the error message is:

$err_msg

Please fix the error in your 'localconfig' file. Alternately, rename your
'localconfig' file, rerun checksetup.pl, and re-enter your answers.

  \$ mv -f localconfig localconfig.old
  \$ ./checksetup.pl
EOT
        }

        my @vars = map($_->{name}, LOCALCONFIG_VARS);
        push(@vars, OLD_LOCALCONFIG_VARS) if $include_deprecated;
        foreach my $var (@vars) {
            my $glob = $s->varglob($var);
            # We can't get the type of a variable out of a Safe automatically.
            # We can only get the glob itself. So we figure out its type this
            # way, by trying first a scalar, then an array, then a hash.
            #
            # The interesting thing is that this converts all deprecated 
            # array or hash vars into hashrefs or arrayrefs, but that's 
            # fine since as I write this all modern localconfig vars are 
            # actually scalars.
            if (defined $$glob) {
                $localconfig{$var} = $$glob;
            }
            elsif (defined @$glob) {
                $localconfig{$var} = \@$glob;
            }
            elsif (defined %$glob) {
                $localconfig{$var} = \%$glob;
            }
        }
    }

    return \%localconfig;
}


#
# This is quite tricky. But fun!
#
# First we read the file 'localconfig'. Then we check if the variables we
# need are defined. If not, we will append the new settings to
# localconfig, instruct the user to check them, and stop.
#
# Why do it this way?
#
# Assume we will enhance Bugzilla and eventually more local configuration
# stuff arises on the horizon.
#
# But the file 'localconfig' is not in the Bugzilla CVS or tarfile. You
# know, we never want to overwrite your own version of 'localconfig', so
# we can't put it into the CVS/tarfile, can we?
#
# Now, when we need a new variable, we simply add the necessary stuff to
# LOCALCONFIG_VARS. When the user gets the new version of Bugzilla from CVS and
# runs checksetup, it finds out "Oh, there is something new". Then it adds
# some default value to the user's local setup and informs the user to
# check that to see if it is what the user wants.
#
# Cute, ey?
#
sub update_localconfig {
    my ($params) = @_;

    my $output      = $params->{output} || 0;
    my $answer      = Bugzilla->installation_answers;
    my $localconfig = read_localconfig('include deprecated');

    my @new_vars;
    foreach my $var (LOCALCONFIG_VARS) {
        my $name = $var->{name};
        if (!defined $localconfig->{$name}) {
            push(@new_vars, $name);
            $var->{default} = &{$var->{default}} if ref($var->{default}) eq 'CODE';
            $localconfig->{$name} = $answer->{$name} || $var->{default};
        }
    }

    my @old_vars;
    foreach my $name (OLD_LOCALCONFIG_VARS) {
        push(@old_vars, $name) if defined $localconfig->{$name};
    }

    if (!$localconfig->{'interdiffbin'} && $output) {
        print <<EOT

OPTIONAL NOTE: If you want to be able to use the 'difference between two
patches' feature of Bugzilla (which requires the PatchReader Perl module
as well), you should install patchutils from:

    http://cyberelk.net/tim/patchutils/

EOT
    }

    my $filename = bz_locations->{'localconfig'};

    if (scalar @old_vars) {
        my $oldstuff = join(', ', @old_vars);
        print <<EOT

The following variables are no longer used in $filename, and
should be removed: $oldstuff

EOT
    }

    if (scalar @new_vars) {
        my $filename = bz_locations->{'localconfig'};
        my $fh = new IO::File($filename, '>>') || die "$filename: $!";
        $fh->seek(0, SEEK_END);
        foreach my $var (LOCALCONFIG_VARS) {
            if (grep($_ eq $var->{name}, @new_vars)) {
                print $fh "\n", $var->{desc},
                      Data::Dumper->Dump([$localconfig->{$var->{name}}], 
                                         ["*$var->{name}"]);
            }
        }

        my $newstuff = join(', ', @new_vars);
        print <<EOT;

This version of Bugzilla contains some variables that you may want to 
change and adapt to your local settings. Please edit the file 
$filename and rerun checksetup.pl.

The following variables are new to $filename since you last ran
checksetup.pl:  $newstuff

EOT
        exit;
    }

    # Reset the cache for Bugzilla->localconfig so that it will be re-read
    delete Bugzilla->request_cache->{localconfig};

    return { old_vars => \@old_vars, new_vars => \@new_vars };
}

sub _get_default_cvsbin       { return bin_loc('cvs') }
sub _get_default_interdiffbin { return bin_loc('interdiff') }
sub _get_default_diffpath {
    my $diff_bin = bin_loc('diff');
    return dirname($diff_bin);
}

1;

__END__

=head1 NAME

Bugzilla::Install::Localconfig - Functions and variables dealing
  with the manipulation and creation of the F<localconfig> file.

=head1 SYNOPSIS

 use Bugzilla::Install::Requirements qw(update_localconfig);
 update_localconfig({ output => 1 });

=head1 DESCRIPTION

This module is used primarily by L<checksetup.pl> to create and
modify the localconfig file. Most scripts should use L<Bugzilla/localconfig>
to access localconfig variables.

=head1 CONSTANTS

=over

=item C<LOCALCONFIG_VARS>

An array of hashrefs. These hashrefs contain three keys:

 name    - The name of the variable.
 default - The default value for the variable. Should always be
           something that can fit in a scalar.
 desc    - Additional text to put in localconfig before the variable
           definition. Must end in a newline. Each line should start
           with "#" unless you have some REALLY good reason not
           to do that.

=item C<OLD_LOCALCONFIG_VARS>

An array of names of variables. If C<update_localconfig> finds these
variables defined in localconfig, it will print out a warning.

=back

=head1 SUBROUTINES

=over

=item C<read_localconfig($include_deprecated)>

Description: Reads the localconfig file and returns all valid
             values in a hashref.

Params:      C<$include_deprecated> - C<true> if you want the returned
                 hashref to also include variables listed in 
                 C<OLD_LOCALCONFIG_VARS>, if they exist. Generally
                 this is only for use by C<update_localconfig>.

Returns:     A hashref of the localconfig variables. If an array
             is defined, it will be an arrayref in the returned hash. If a
             hash is defined, it will be a hashref in the returned hash.
             Only includes variables specified in C<LOCALCONFIG_VARS>
             (and C<OLD_LOCALCONFIG_VARS> if C<$include_deprecated> is
             specified).

=item C<update_localconfig({ output =E<gt> 1 })>

Description: Adds any new variables to localconfig that aren't
             currently defined there. Also optionally prints out
             a message about vars that *should* be there and aren't.
             Exits the program if it adds any new vars.

Params:      C<output> - C<true> if the function should display informational
                 output and warnings. It will always display errors or
                 any message which would cause program execution to halt.

Returns:     A hashref, with C<old_vals> being an array of names of variables
             that were removed, and C<new_vals> being an array of names
             of variables that were added to localconfig.

=back
> 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 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
# translation of ru.po to Russian
# Translation of rpmdrake messages to Russian
# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
#
# Aleksey Smirnov <smi@logic.ru>, 2000.
# Vladimir Choundalov <choundalovvv@point.pwp.ru>, 2001.
# Pavel Maryanov <acid_jack@ukr.net>, 2003, 2004, 2005, 2006, 2007, 2008, 2009.
# Alice Lafox <alice@lafox.com.ua>, 2003.
# Alice Lafox <alice@lafox.net>, 2004.
# akdengi <kazancas@mandriva.ru>, 2008, 2009.
msgid ""
msgstr ""
"Project-Id-Version: ru\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-10-16 16:32+0200\n"
"PO-Revision-Date: 2009-10-04 19:55+0500\n"
"Last-Translator: akdengi <kazancas@mandriva.ru>\n"
"Language-Team: Russian <gnu@mx.ru>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms:  nplurals=2; plural=(n!=1);\n"
"\n"
"\n"
"\n"
"X-Generator: KBabel 1.11.4\n"

#: ../MandrivaUpdate:102 ../Rpmdrake/gui.pm:905
#, c-format
msgid ""
"The list of updates is empty. This means that either there is\n"
"no available update for the packages installed on your computer,\n"
"or you already installed all of them."
msgstr ""
"Список пакетов пуст. Это означает, что либо нет обновлений для\n"
"пакетов, установленных на вашем компьютере, либо они уже все\n"
"установлены."

#: ../MandrivaUpdate:125 ../rpmdrake:100 ../rpmdrake:776 ../rpmdrake.pm:219
#, c-format
msgid "Software Management"
msgstr "Менеджер программ"

#: ../MandrivaUpdate:149
#, c-format
msgid "Here is the list of software package updates"
msgstr "Список пакетов с обновлениями программ"

#: ../MandrivaUpdate:156
#, c-format
msgid "Name"
msgstr "Название"

#: ../MandrivaUpdate:157 ../rpmdrake:292
#, c-format
msgid "Version"
msgstr "Версия"

#: ../MandrivaUpdate:158 ../rpmdrake:296
#, c-format
msgid "Release"
msgstr "Релиз"

#: ../MandrivaUpdate:159
#, c-format
msgid "Arch"
msgstr "Платформа"

#: ../MandrivaUpdate:173 ../Rpmdrake/edit_urpm_sources.pm:1159
#, c-format
msgid "Help"
msgstr "Справка"

#: ../MandrivaUpdate:177 ../rpmdrake:699 ../rpmdrake.pm:832
#, c-format
msgid "Select all"
msgstr "Выбрать все"

#: ../MandrivaUpdate:190 ../rpmdrake.pm:836
#, c-format
msgid "Update"
msgstr "Обновить"

#: ../MandrivaUpdate:198 ../rpmdrake:710
#, c-format
msgid "Quit"
msgstr "Выход"

#: ../Rpmdrake/edit_urpm_sources.pm:62
#, c-format
msgid "CD-ROM"
msgstr "CD-ROM"

#: ../Rpmdrake/edit_urpm_sources.pm:63
#, c-format
msgid "FTP"
msgstr "FTP"

#: ../Rpmdrake/edit_urpm_sources.pm:64 ../Rpmdrake/edit_urpm_sources.pm:74
#, c-format
msgid "Local"
msgstr "Локальные файлы"

#: ../Rpmdrake/edit_urpm_sources.pm:65
#, c-format
msgid "HTTP"
msgstr "HTTP"

#: ../Rpmdrake/edit_urpm_sources.pm:66
#, c-format
msgid "HTTPS"
msgstr "HTTPS"

#: ../Rpmdrake/edit_urpm_sources.pm:67 ../Rpmdrake/edit_urpm_sources.pm:70
#, c-format
msgid "NFS"
msgstr "NFS"

#: ../Rpmdrake/edit_urpm_sources.pm:68
#, c-format
msgid "Removable"
msgstr "Съёмный носитель"

#: ../Rpmdrake/edit_urpm_sources.pm:69
#, c-format
msgid "rsync"
msgstr "rsync"

#: ../Rpmdrake/edit_urpm_sources.pm:72
#, c-format
msgid "Mirror list"
msgstr "Список зеркал"

#: ../Rpmdrake/edit_urpm_sources.pm:114
#, c-format
msgid "Choose media type"
msgstr "Выберите тип источника"

#: ../Rpmdrake/edit_urpm_sources.pm:115
#, c-format
msgid ""
"In order to keep your system secure and stable, you must at a minimum set "
"up\n"
"sources for official security and stability updates. You can also choose to "
"set\n"
"up a fuller set of sources which includes the complete official Mandriva\n"
"repositories, giving you access to more software than can fit on the "
"Mandriva\n"
"discs. Please choose whether to configure update sources only, or the full "
"set\n"
"of sources."
msgstr ""
"Чтобы поддерживать систему в надёжном и защищённом состоянии, нужно как\n"
"минимум настроить источники с официальными обновлениями безопасности. Можно\n"
"также добавить полный набор источников, в который входят официальные "
"репозитории\n"
"пакетов Mandriva, содержащие гораздо больше программного обеспечения, чем "
"может\n"
"поместиться на дисках с дистрибутивом. Выберите, какие источники нужно "
"настроить."

#: ../Rpmdrake/edit_urpm_sources.pm:122
#, c-format
msgid "Full set of sources"
msgstr "Полный набор источников"

#: ../Rpmdrake/edit_urpm_sources.pm:122
#, c-format
msgid "Update sources only"
msgstr "Только источники с обновлениями"

#: ../Rpmdrake/edit_urpm_sources.pm:135
#, c-format
msgid ""
"This will attempt to install all official sources corresponding to your\n"
"distribution (%s).\n"
"\n"
"I need to contact the Mandriva website to get the mirror list.\n"
"Please check that your network is currently running.\n"
"\n"
"Is it ok to continue?"
msgstr ""
"Будет выполнена попытка добавить все официальные источники,\n"
"соответствующие данному дистрибутиву (%s).\n"
"\n"
"Необходимо подключится к серверу Mandriva для получения списка зеркал.\n"
"Проверьте, чтобы сейчас было доступно подключение к Интернету.\n"
"\n"
"Продолжить?"

#: ../Rpmdrake/edit_urpm_sources.pm:145 ../Rpmdrake/edit_urpm_sources.pm:160
#, c-format
msgid "Please wait, adding media..."
msgstr "Подождите. Добавляется источник..."

#: ../Rpmdrake/edit_urpm_sources.pm:168
#, c-format
msgid "Add a medium"
msgstr "Добавить источник"

#: ../Rpmdrake/edit_urpm_sources.pm:172
#, c-format
msgid "Local files"
msgstr "Локальные файлы"

#: ../Rpmdrake/edit_urpm_sources.pm:172
#, c-format
msgid "Medium path:"
msgstr "Путь к источнику:"

#: ../Rpmdrake/edit_urpm_sources.pm:173
#, c-format
msgid "FTP server"
msgstr "Сервер FTP"

#: ../Rpmdrake/edit_urpm_sources.pm:173 ../Rpmdrake/edit_urpm_sources.pm:174
#: ../Rpmdrake/edit_urpm_sources.pm:175 ../Rpmdrake/edit_urpm_sources.pm:483
#, c-format
msgid "URL:"
msgstr "URL:"

#: ../Rpmdrake/edit_urpm_sources.pm:174
#, c-format
msgid "RSYNC server"
msgstr "Сервер RSYNC"

#: ../Rpmdrake/edit_urpm_sources.pm:175
#, c-format
msgid "HTTP server"
msgstr "Сервер HTTP"

#: ../Rpmdrake/edit_urpm_sources.pm:176
#, c-format
msgid "Removable device (CD-ROM, DVD, ...)"
msgstr "Съёмное устройство (CD-ROM, DVD...)"

#: ../Rpmdrake/edit_urpm_sources.pm:176
#, c-format
msgid "Path or mount point:"
msgstr "Путь или точка монтирования:"

#: ../Rpmdrake/edit_urpm_sources.pm:194
#, c-format
msgid "Browse..."
msgstr "Найти..."

#: ../Rpmdrake/edit_urpm_sources.pm:221
#, c-format
msgid "Login:"
msgstr "Логин:"

#: ../Rpmdrake/edit_urpm_sources.pm:221 ../Rpmdrake/edit_urpm_sources.pm:583
#: ../rpmdrake.pm:148
#, c-format
msgid "Password:"
msgstr "Пароль:"

#: ../Rpmdrake/edit_urpm_sources.pm:227
#, c-format
msgid "Medium name:"
msgstr "Название источника:"

#: ../Rpmdrake/edit_urpm_sources.pm:233
#, c-format
msgid "Create media for a whole distribution"
msgstr "Создать источник для всего дистрибутива"

#: ../Rpmdrake/edit_urpm_sources.pm:242
#, c-format
msgid "Tag this medium as an update medium"
msgstr "Пометить этот источник, как источник с обновлениями"

#: ../Rpmdrake/edit_urpm_sources.pm:252
#, c-format
msgid "You need to fill up at least the two first entries."
msgstr "Необходимо заполнить как минимум два первых пункта."

#: ../Rpmdrake/edit_urpm_sources.pm:256
#, c-format
msgid ""
"There is already a medium by that name, do you\n"
"really want to replace it?"
msgstr ""
"Источник с таким названием уже существует,\n"
"Заменить его?"

#: ../Rpmdrake/edit_urpm_sources.pm:268
#, c-format
msgid "Adding a medium:"
msgstr "Добавляется источник:"

#: ../Rpmdrake/edit_urpm_sources.pm:270
#, c-format
msgid "Type of medium:"
msgstr "Тип источника:"

#: ../Rpmdrake/edit_urpm_sources.pm:280 ../Rpmdrake/edit_urpm_sources.pm:394
#: ../Rpmdrake/edit_urpm_sources.pm:492 ../Rpmdrake/edit_urpm_sources.pm:519
#: ../Rpmdrake/edit_urpm_sources.pm:600 ../Rpmdrake/edit_urpm_sources.pm:664
#: ../Rpmdrake/edit_urpm_sources.pm:766 ../Rpmdrake/gui.pm:633
#: ../Rpmdrake/init.pm:158 ../Rpmdrake/pkg.pm:188 ../Rpmdrake/pkg.pm:779
#: ../rpmdrake.pm:337 ../rpmdrake.pm:678 ../rpmdrake.pm:751 ../rpmdrake.pm:828
#, c-format
msgid "Cancel"
msgstr "Отмена"

#: ../Rpmdrake/edit_urpm_sources.pm:282 ../Rpmdrake/edit_urpm_sources.pm:396
#: ../Rpmdrake/edit_urpm_sources.pm:519 ../Rpmdrake/edit_urpm_sources.pm:590
#: ../Rpmdrake/edit_urpm_sources.pm:663 ../Rpmdrake/edit_urpm_sources.pm:759
#: ../Rpmdrake/edit_urpm_sources.pm:832 ../Rpmdrake/edit_urpm_sources.pm:946
#: ../Rpmdrake/edit_urpm_sources.pm:1160 ../Rpmdrake/gui.pm:633
#: ../Rpmdrake/gui.pm:649 ../Rpmdrake/gui.pm:654 ../Rpmdrake/init.pm:158
#: ../Rpmdrake/pkg.pm:576 ../Rpmdrake/pkg.pm:779 ../Rpmdrake/rpmnew.pm:185
#: ../rpmdrake.pm:139 ../rpmdrake.pm:273 ../rpmdrake.pm:340 ../rpmdrake.pm:678
#, c-format
msgid "Ok"
msgstr "ОК"

#: ../Rpmdrake/edit_urpm_sources.pm:337
#, c-format
msgid "Global options for package installation"
msgstr "Глобальные параметры для установки пакета"

#: ../Rpmdrake/edit_urpm_sources.pm:339
#, c-format
msgid "never"
msgstr "никогда"

#: ../Rpmdrake/edit_urpm_sources.pm:339
#, c-format
msgid "always"
msgstr "всегда"

#: ../Rpmdrake/edit_urpm_sources.pm:344 ../Rpmdrake/edit_urpm_sources.pm:376
#, c-format
msgid "Never"
msgstr "Никогда"

#: ../Rpmdrake/edit_urpm_sources.pm:345 ../Rpmdrake/edit_urpm_sources.pm:379
#, c-format
msgid "On-demand"
msgstr "По запросу"

#: ../Rpmdrake/edit_urpm_sources.pm:346 ../Rpmdrake/edit_urpm_sources.pm:383
#, c-format
msgid "Update-only"
msgstr "Только обновить"

#: ../Rpmdrake/edit_urpm_sources.pm:347 ../Rpmdrake/edit_urpm_sources.pm:386
#, c-format
msgid "Always"
msgstr "Всегда"

#: ../Rpmdrake/edit_urpm_sources.pm:355
#, c-format
msgid "Verify RPMs to be installed:"
msgstr "Проверять устанавливаемые rpm-файлы:"

#: ../Rpmdrake/edit_urpm_sources.pm:360
#, c-format
msgid "Download program to use:"
msgstr "Используемая программа загрузки:"

#: ../Rpmdrake/edit_urpm_sources.pm:367
#, c-format
msgid "XML meta-data download policy:"
msgstr "Политика загрузки XML с метаданными:"

#: ../Rpmdrake/edit_urpm_sources.pm:374
#, c-format
msgid ""
"For remote media, specify when XML meta-data (file lists, changelogs & "
"informations) are downloaded."
msgstr ""
"Укажите для удалённого источника, когда нужно загружать XML-файл с "
"метаданными (списки файлов, журналы изменений и сведения)."

#: ../Rpmdrake/edit_urpm_sources.pm:377
#, c-format
msgid "For remote media, XML meta-data are never downloaded."
msgstr "Никогда не загружать XML-файл с метаданными для удалённого источника."

#: ../Rpmdrake/edit_urpm_sources.pm:380
#, c-format
msgid "(This is the default)"
msgstr "(по умолчанию)"

#: ../Rpmdrake/edit_urpm_sources.pm:381
#, c-format
msgid "The specific XML info file is downloaded when clicking on package."
msgstr "После щелчка по файлу загружается XML-файл с данными."

#: ../Rpmdrake/edit_urpm_sources.pm:384
#, c-format
msgid ""
"Updating media implies updating XML info files already required at least "
"once."
msgstr ""
"Под обновлением источника подразумевается как минимум одно обновление XML-"
"файлов."

#: ../Rpmdrake/edit_urpm_sources.pm:387
#, c-format
msgid "All XML info files are downloaded when adding or updating media."
msgstr "При добавлении или обновлении источника загружаются все XML-файлы."

#: ../Rpmdrake/edit_urpm_sources.pm:416
#, c-format
msgid "Source Removal"
msgstr "Удаление источников"

#: ../Rpmdrake/edit_urpm_sources.pm:418
#, c-format
msgid "Are you sure you want to remove source \"%s\"?"
msgstr "Удалить источник «%s»?"

#: ../Rpmdrake/edit_urpm_sources.pm:419
#, c-format
msgid "Are you sure you want to remove the following sources?"
msgstr "Удалить следующие источники?"

#: ../Rpmdrake/edit_urpm_sources.pm:425
#, c-format
msgid "Please wait, removing medium..."
msgstr "Подождите, удаляется источник..."

#: ../Rpmdrake/edit_urpm_sources.pm:473
#, c-format
msgid "Edit a medium"
msgstr "Редактировать источник"

#: ../Rpmdrake/edit_urpm_sources.pm:480
#, c-format
msgid "Editing medium \"%s\":"
msgstr "Редактирование источника «%s»:"

#: ../Rpmdrake/edit_urpm_sources.pm:484
#, c-format
msgid "Downloader:"
msgstr "Программа загрузки:"

#: ../Rpmdrake/edit_urpm_sources.pm:496
#, c-format
msgid "Save changes"
msgstr "Сохранить изменения"

#: ../Rpmdrake/edit_urpm_sources.pm:505
#, c-format
msgid "Proxy..."
msgstr "Прокси..."

#: ../Rpmdrake/edit_urpm_sources.pm:517
#, c-format
msgid "You need to insert the medium to continue"
msgstr "Вставьте носитель для продолжения"

#: ../Rpmdrake/edit_urpm_sources.pm:518
#, c-format
msgid ""
"In order to save the changes, you need to insert the medium in the drive."
msgstr "Чтобы сохранить изменения, вставьте носитель в привод."

#: ../Rpmdrake/edit_urpm_sources.pm:553
#, c-format
msgid "Configure proxies"
msgstr "Настроить прокси"

#: ../Rpmdrake/edit_urpm_sources.pm:566
#, c-format
msgid "Proxy settings for media \"%s\""
msgstr "Настройки прокси для носителя «%s»"

#: ../Rpmdrake/edit_urpm_sources.pm:567
#, c-format
msgid "Global proxy settings"
msgstr "Общие настройки прокси"

#: ../Rpmdrake/edit_urpm_sources.pm:569
#, c-format
msgid ""
"If you need a proxy, enter the hostname and an optional port (syntax: "
"<proxyhost[:port]>):"
msgstr ""
"Если требуется прокси, введите имя сервера и, при необходимости, порт "
"(синтаксис: <прокси-сервер[:порт]>):"

#: ../Rpmdrake/edit_urpm_sources.pm:572
#, c-format
msgid "Proxy hostname:"
msgstr "Имя прокси-сервера:"

#: ../Rpmdrake/edit_urpm_sources.pm:575
#, c-format
msgid "You may specify a user/password for the proxy authentication:"
msgstr ""
"Можно указать пользователя/пароль для аутентификации на прокси-сервере:"

#: ../Rpmdrake/edit_urpm_sources.pm:578
#, c-format
msgid "User:"
msgstr "Пользователь:"

#: ../Rpmdrake/edit_urpm_sources.pm:674
#, c-format
msgid "Add a parallel group"
msgstr "Добавить параллельную группу"

#: ../Rpmdrake/edit_urpm_sources.pm:674
#, c-format
msgid "Edit a parallel group"
msgstr "Редактировать параллельную группу"

#: ../Rpmdrake/edit_urpm_sources.pm:698
#, c-format
msgid "Add a medium limit"
msgstr "Добавить предел источника"

#: ../Rpmdrake/edit_urpm_sources.pm:698
#, c-format
msgid "Choose a medium for adding in the media limit:"
msgstr "Выберите источник для установки его предела:"

#: ../Rpmdrake/edit_urpm_sources.pm:715
#, c-format
msgid "Add a host"
msgstr "Добавить сервер"

#: ../Rpmdrake/edit_urpm_sources.pm:715
#, c-format
msgid "Type in the hostname or IP address of the host to add:"
msgstr "Введите имя добавляемого сервера или его IP-адрес:"

#: ../Rpmdrake/edit_urpm_sources.pm:729
#, c-format
msgid "Editing parallel group \"%s\":"
msgstr "Редактирование параллельной группы «%s»:"

#: ../Rpmdrake/edit_urpm_sources.pm:733
#, c-format
msgid "Group name:"
msgstr "Название группы:"

#: ../Rpmdrake/edit_urpm_sources.pm:734
#, c-format
msgid "Protocol:"
msgstr "Протокол:"

#: ../Rpmdrake/edit_urpm_sources.pm:736
#, c-format
msgid "Media limit:"
msgstr "Предел источника:"

#: ../Rpmdrake/edit_urpm_sources.pm:741 ../Rpmdrake/edit_urpm_sources.pm:750
#: ../Rpmdrake/edit_urpm_sources.pm:934 ../Rpmdrake/edit_urpm_sources.pm:1140
#, c-format
msgid "Add"
msgstr "Добавить"

#: ../Rpmdrake/edit_urpm_sources.pm:742 ../Rpmdrake/edit_urpm_sources.pm:751
#: ../Rpmdrake/edit_urpm_sources.pm:812 ../Rpmdrake/edit_urpm_sources.pm:938
#: ../Rpmdrake/edit_urpm_sources.pm:1130
#, c-format
msgid "Remove"
msgstr "Удалить"

#: ../Rpmdrake/edit_urpm_sources.pm:745
#, c-format
msgid "Hosts:"
msgstr "Серверы:"

#: ../Rpmdrake/edit_urpm_sources.pm:781
#, c-format
msgid "Configure parallel urpmi (distributed execution of urpmi)"
msgstr "Настроить параллельный urpmi (распределённое выполнение urpmi)"

#: ../Rpmdrake/edit_urpm_sources.pm:785
#, c-format
msgid "Group"
msgstr "Группа"

#: ../Rpmdrake/edit_urpm_sources.pm:785
#, c-format
msgid "Protocol"
msgstr "Протокол"

#: ../Rpmdrake/edit_urpm_sources.pm:785
#, c-format
msgid "Media limit"
msgstr "Предел источника"

#: ../Rpmdrake/edit_urpm_sources.pm:786
#, c-format
msgid "Command"
msgstr "Команда"

#: ../Rpmdrake/edit_urpm_sources.pm:796 ../Rpmdrake/formatting.pm:129
#: ../Rpmdrake/gui.pm:902 ../Rpmdrake/pkg.pm:99 ../Rpmdrake/pkg.pm:147
#: ../Rpmdrake/pkg.pm:158 ../Rpmdrake/pkg.pm:179 ../Rpmdrake/rpmnew.pm:81
#, c-format
msgid "(none)"
msgstr "(нет)"

#: ../Rpmdrake/edit_urpm_sources.pm:816
#, c-format
msgid "Edit..."
msgstr "Редактировать..."

#: ../Rpmdrake/edit_urpm_sources.pm:824
#, c-format
msgid "Add..."
msgstr "Добавить..."

#: ../Rpmdrake/edit_urpm_sources.pm:840
#, c-format
msgid "Manage keys for digital signatures of packages"
msgstr "Управление ключами для цифровых подписей пакетов"

#: ../Rpmdrake/edit_urpm_sources.pm:846 ../Rpmdrake/edit_urpm_sources.pm:1055
#, c-format
msgid "Medium"
msgstr "Источник"

#: ../Rpmdrake/edit_urpm_sources.pm:853
#, c-format
msgid ""
"_:cryptographic keys\n"
"Keys"
msgstr "Ключи"

#: ../Rpmdrake/edit_urpm_sources.pm:876
#, c-format
msgid "no name found, key doesn't exist in rpm keyring!"
msgstr "имя не найдено, ключ отсутствует в rpm keyring!"

#: ../Rpmdrake/edit_urpm_sources.pm:896
#, c-format
msgid "Add a key"
msgstr "Добавить ключ"

#: ../Rpmdrake/edit_urpm_sources.pm:896
#, c-format
msgid "Choose a key for adding to the medium %s"
msgstr "Выберите ключ для добавления к источнику %s"

#: ../Rpmdrake/edit_urpm_sources.pm:915
#, c-format
msgid "Remove a key"
msgstr "Удалить ключ"

#: ../Rpmdrake/edit_urpm_sources.pm:916
#, c-format
msgid ""
"Are you sure you want to remove the key %s from medium %s?\n"
"(name of the key: %s)"
msgstr ""
"Удалить ключ %s из источника %s?\n"
"(имя ключа: %s)"

#: ../Rpmdrake/edit_urpm_sources.pm:955 ../Rpmdrake/edit_urpm_sources.pm:1123
#, c-format
msgid "Configure media"
msgstr "Настройка источника"

#: ../Rpmdrake/edit_urpm_sources.pm:962 ../Rpmdrake/edit_urpm_sources.pm:963
#: ../Rpmdrake/edit_urpm_sources.pm:964 ../Rpmdrake/edit_urpm_sources.pm:965
#: ../Rpmdrake/edit_urpm_sources.pm:966 ../rpmdrake:542 ../rpmdrake:545
#: ../rpmdrake:550 ../rpmdrake:565 ../rpmdrake:566
#, c-format
msgid "/_File"
msgstr "/_Файл"

#: ../Rpmdrake/edit_urpm_sources.pm:963
#, c-format
msgid "/_Update"
msgstr "/_Обновить"

#: ../Rpmdrake/edit_urpm_sources.pm:963
#, c-format
msgid "<control>U"
msgstr "<control>U"

#: ../Rpmdrake/edit_urpm_sources.pm:964
#, c-format
msgid "/Add a specific _media mirror"
msgstr "/Добавить особое _зеркало"

#: ../Rpmdrake/edit_urpm_sources.pm:964
#, c-format
msgid "<control>M"
msgstr "<control>M"

#: ../Rpmdrake/edit_urpm_sources.pm:965
#, c-format
msgid "/_Add a custom medium"
msgstr "/_Добавить пользовательский источник"

#: ../Rpmdrake/edit_urpm_sources.pm:965
#, c-format
msgid "<control>A"
msgstr "<control>A"

#: ../Rpmdrake/edit_urpm_sources.pm:966
#, c-format
msgid "/Close"
msgstr "/Закрыть"

#: ../Rpmdrake/edit_urpm_sources.pm:966
#, c-format
msgid "<control>W"
msgstr "<control>W"

#: ../Rpmdrake/edit_urpm_sources.pm:967 ../Rpmdrake/edit_urpm_sources.pm:968
#: ../Rpmdrake/edit_urpm_sources.pm:969 ../Rpmdrake/edit_urpm_sources.pm:970
#: ../Rpmdrake/edit_urpm_sources.pm:971 ../rpmdrake:535 ../rpmdrake:536
#: ../rpmdrake:537 ../rpmdrake:538 ../rpmdrake:539 ../rpmdrake:569
#: ../rpmdrake:576 ../rpmdrake:580 ../rpmdrake:651
#, c-format
msgid "/_Options"
msgstr "/_Параметры"

#: ../Rpmdrake/edit_urpm_sources.pm:968
#, c-format
msgid "/_Global options"
msgstr "/_Глобальные параметры"

#: ../Rpmdrake/edit_urpm_sources.pm:968
#, c-format
msgid "<control>G"
msgstr "<control>G"

#: ../Rpmdrake/edit_urpm_sources.pm:969
#, c-format
msgid "/Manage _keys"
msgstr "/Управление _ключами"

#: ../Rpmdrake/edit_urpm_sources.pm:969
#, c-format
msgid "<control>K"
msgstr "<control>K"

#: ../Rpmdrake/edit_urpm_sources.pm:970
#, c-format
msgid "/_Parallel"
msgstr "/_Параллельное выполнение"

#: ../Rpmdrake/edit_urpm_sources.pm:970
#, c-format
msgid "<control>P"
msgstr "<control>P"

#: ../Rpmdrake/edit_urpm_sources.pm:971
#, c-format
msgid "/P_roxy"
msgstr "/П_рокси"

#: ../Rpmdrake/edit_urpm_sources.pm:971
#, c-format
msgid "<control>R"
msgstr "<control>R"

#: ../Rpmdrake/edit_urpm_sources.pm:973 ../Rpmdrake/edit_urpm_sources.pm:974
#: ../Rpmdrake/edit_urpm_sources.pm:975 ../Rpmdrake/edit_urpm_sources.pm:976
#: ../rpmdrake:604 ../rpmdrake:605 ../rpmdrake:606 ../rpmdrake:607
#, c-format
msgid "/_Help"
msgstr "/_Справка"

#: ../Rpmdrake/edit_urpm_sources.pm:974 ../rpmdrake:605
#, c-format
msgid "/_Report Bug"
msgstr "/С_ообщить об ошибке"

#: ../Rpmdrake/edit_urpm_sources.pm:976 ../rpmdrake:607
#, c-format
msgid "/_About..."
msgstr "/О _программе..."

#: ../Rpmdrake/edit_urpm_sources.pm:979 ../rpmdrake:610
#, c-format
msgid "Rpmdrake"
msgstr "Rpmdrake"

#: ../Rpmdrake/edit_urpm_sources.pm:981 ../rpmdrake:612
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr "Copyright (C) %s Mandriva"

#: ../Rpmdrake/edit_urpm_sources.pm:983 ../rpmdrake:614
#, c-format
msgid "Rpmdrake is Mandriva Linux package management tool."
msgstr "Rpmdrake — это утилита Mandriva Linux для управления пакетами."

#: ../Rpmdrake/edit_urpm_sources.pm:985 ../rpmdrake:616
#, c-format
msgid "Mandriva Linux"
msgstr "Mandriva Linux"

#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#: ../Rpmdrake/edit_urpm_sources.pm:990 ../rpmdrake:621
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr "Павел Марьянов <acid_jack@ukr.net>\n"

#: ../Rpmdrake/edit_urpm_sources.pm:1045 ../Rpmdrake/pkg.pm:253
#, c-format
msgid "Enabled"
msgstr "Включён"

#: ../Rpmdrake/edit_urpm_sources.pm:1048
#, c-format
msgid "Updates"
msgstr "Обновления"

#: ../Rpmdrake/edit_urpm_sources.pm:1052
#, c-format
msgid "Type"
msgstr "Тип"

#: ../Rpmdrake/edit_urpm_sources.pm:1071
#, c-format
msgid "This medium needs to be updated to be usable. Update it now ?"
msgstr ""
"Этот источник необходимо обновить, чтобы его можно было использовать. "
"Обновить его сейчас?"

#: ../Rpmdrake/edit_urpm_sources.pm:1098
#, c-format
msgid ""
"Unable to update medium, errors reported:\n"
"\n"
"%s"
msgstr ""
"Невозможно обновить источник. Ошибки:\n"
"\n"
"%s"

#: ../Rpmdrake/edit_urpm_sources.pm:1134
#, c-format
msgid "Edit"
msgstr "Редактировать"

#: ../Rpmdrake/edit_urpm_sources.pm:1180
#, c-format
msgid ""
"Packages database is locked. Please close other applications\n"
"working with packages database (do you have another media\n"
"manager on another desktop, or are you currently installing\n"
"packages as well?)."
msgstr ""
"База данных пакетов заблокирована. Закройте другие приложения,\n"
"работающие с базой данных пакетов (может на другом рабочем\n"
"столе запущена ещё одна копия менеджера источников, или сейчас\n"
"идёт установка пакетов в другом окне?)."

#: ../Rpmdrake/formatting.pm:102
#, c-format
msgid "None (installed)"
msgstr "Нет (установлен)"

#: ../Rpmdrake/formatting.pm:103
#, c-format
msgid "Unknown"
msgstr "Неизвестный"

#: ../Rpmdrake/formatting.pm:166
#, c-format
msgid "%s of additional disk space will be used."
msgstr "Будет использовано %s дискового пространства."

#: ../Rpmdrake/formatting.pm:167
#, c-format
msgid "%s of disk space will be freed."
msgstr "Будет особождено %s дискового пространства."

#: ../Rpmdrake/gui.pm:78
#, c-format
msgid "Search results"
msgstr "Результаты поиска"

#: ../Rpmdrake/gui.pm:78
#, c-format
msgid "Search results (none)"
msgstr "Результаты поиска (нет)"

#: ../Rpmdrake/gui.pm:124 ../Rpmdrake/gui.pm:245 ../Rpmdrake/gui.pm:247
#: ../Rpmdrake/pkg.pm:171
#, c-format
msgid "(Not available)"
msgstr "(недоступно)"

#: ../Rpmdrake/gui.pm:153 ../Rpmdrake/gui.pm:263
#, c-format
msgid "Importance: "
msgstr "Важность: "

#: ../Rpmdrake/gui.pm:154 ../Rpmdrake/gui.pm:271
#, c-format
msgid "Reason for update: "
msgstr "Причина обновления:"

#: ../Rpmdrake/gui.pm:158
#, c-format
msgid "Security advisory"
msgstr "Бюллетень безопасности"

#: ../Rpmdrake/gui.pm:163 ../Rpmdrake/gui.pm:273
#, c-format
msgid "No description"
msgstr "Описания нет"

#: ../Rpmdrake/gui.pm:170 ../Rpmdrake/gui.pm:258
#, c-format
msgid "Version: "
msgstr "Версия: "

#: ../Rpmdrake/gui.pm:173 ../Rpmdrake/gui.pm:253
#, c-format
msgid "Currently installed version: "
msgstr "Установленная версия:"

#: ../Rpmdrake/gui.pm:176
#, c-format
msgid "Group: "
msgstr "Группа:"

#: ../Rpmdrake/gui.pm:177 ../Rpmdrake/gui.pm:259
#, c-format
msgid "Architecture: "
msgstr "Архитектура: "

#: ../Rpmdrake/gui.pm:178 ../Rpmdrake/gui.pm:260
#, c-format
msgid "Size: "
msgstr "Размер: "

#: ../Rpmdrake/gui.pm:178 ../Rpmdrake/gui.pm:260
#, c-format
msgid "%s KB"
msgstr "%s КБ"

#: ../Rpmdrake/gui.pm:179 ../Rpmdrake/gui.pm:252 ../rpmdrake.pm:883
#, c-format
msgid "Medium: "
msgstr "Источник:"

#: ../Rpmdrake/gui.pm:190
#, c-format
msgid "URL: "
msgstr "URL: "

#: ../Rpmdrake/gui.pm:195
#, c-format
msgid "Details:"
msgstr "Подробности:"

#: ../Rpmdrake/gui.pm:199
#, c-format
msgid "Files:"
msgstr "Файлы:"

#: ../Rpmdrake/gui.pm:207
#, c-format
msgid "Changelog:"
msgstr "Журнал изменений:"

#: ../Rpmdrake/gui.pm:214
#, c-format
msgid "Dependencies:"
msgstr "Зависимости:"

#: ../Rpmdrake/gui.pm:242
#, c-format
msgid "Files:\n"
msgstr "Файлы:\n"

#: ../Rpmdrake/gui.pm:247
#, c-format
msgid "Changelog:\n"
msgstr "Журнал изменений:\n"

#: ../Rpmdrake/gui.pm:257
#, c-format
msgid "Name: "
msgstr "Название: "

#: ../Rpmdrake/gui.pm:267
#, c-format
msgid "Summary: "
msgstr "Сводка: "

#: ../Rpmdrake/gui.pm:273
#, c-format
msgid "Description: "
msgstr "Описание:"

#: ../Rpmdrake/gui.pm:288 ../Rpmdrake/gui.pm:482 ../Rpmdrake/gui.pm:488
#: ../Rpmdrake/gui.pm:494 ../Rpmdrake/pkg.pm:789 ../Rpmdrake/pkg.pm:799
#: ../Rpmdrake/pkg.pm:813 ../rpmdrake.pm:808 ../rpmdrake.pm:922
#, c-format
msgid "Warning"
msgstr "Внимание"

#: ../Rpmdrake/gui.pm:290
#, c-format
msgid "The package \"%s\" was found."
msgstr "Найден пакет «%s»."

#: ../Rpmdrake/gui.pm:291
#, c-format
msgid "However this package is not in the package list."
msgstr "Однако этот пакет отсутствует в списке пакетов."

#: ../Rpmdrake/gui.pm:292
#, c-format
msgid "You may want to update your urpmi database."
msgstr "Возможно, нужно обновить базу данных urpmi."

#: ../Rpmdrake/gui.pm:294
#, c-format
msgid "Matching packages:"
msgstr "Найденные пакеты:"

#. -PO: this is list fomatting: "- <package_name> (medium: <medium_name>)"
#. -PO: eg: "- rpmdrake (medium: "Main Release"
#: ../Rpmdrake/gui.pm:299
#, c-format
msgid "- %s (medium: %s)"
msgstr "- %s (источник: %s)"

#: ../Rpmdrake/gui.pm:483
#, c-format
msgid "Removing package %s would break your system"
msgstr "Удаление пакета %s нарушит работу системы"

#: ../Rpmdrake/gui.pm:488
#, c-format
msgid ""
"The \"%s\" package is in urpmi skip list.\n"
"Do you want to select it anyway?"
msgstr ""
"Пакет «%s» присутствует в списке игнорируемых.\n"
"Всё равно выбрать его?"

#: ../Rpmdrake/gui.pm:494 ../Rpmdrake/pkg.pm:670
#, c-format
msgid ""
"Rpmdrake or one of its priority dependencies needs to be updated first. "
"Rpmdrake will then restart."
msgstr ""
"Сначала нужно обновить rpmdrake или одну из зависящих от него программ. "
"После этого rpmdrake будет снова запущен."

#: ../Rpmdrake/gui.pm:615 ../Rpmdrake/gui.pm:645 ../Rpmdrake/gui.pm:647
#, c-format
msgid "More information on package..."
msgstr "Дополнительная информация о пакете..."

#: ../Rpmdrake/gui.pm:617
#, c-format
msgid "Please choose"
msgstr "Сделайте выбор"

#: ../Rpmdrake/gui.pm:618
#, c-format
msgid "The following package is needed:"
msgstr "Нужен следующий пакет:"

#: ../Rpmdrake/gui.pm:618
#, c-format
msgid "One of the following packages is needed:"
msgstr "Нужен один из следующих пакетов:"

#. -PO: Keep it short, this is gonna be on a button
#: ../Rpmdrake/gui.pm:633 ../Rpmdrake/gui.pm:638
#, c-format
msgid "More info"
msgstr "Дополнительно"

#: ../Rpmdrake/gui.pm:640
#, c-format
msgid "Information on packages"
msgstr "Информация о пакетах"

#: ../Rpmdrake/gui.pm:668
#, c-format
msgid "Checking dependencies of package..."
msgstr "Проверяются зависимости пакета..."

#: ../Rpmdrake/gui.pm:673
#, c-format
msgid "Some additional packages need to be removed"
msgstr "Некоторые дополнительные пакеты должны быть удалены"

#: ../Rpmdrake/gui.pm:684
#, c-format
msgid ""
"Because of their dependencies, the following package(s) also need to be "
"removed:"
msgstr "Из-за зависимостей следующие пакеты также должны быть удалены:"

#: ../Rpmdrake/gui.pm:689
#, c-format
msgid "Some packages can't be removed"
msgstr "Некоторые пакеты не могут быть удалены"

#: ../Rpmdrake/gui.pm:690
#, c-format
msgid ""
"Removing these packages would break your system, sorry:\n"
"\n"
msgstr ""
"Удаление этих пакетов нарушит работу всей системы:\n"
"\n"

#: ../Rpmdrake/gui.pm:699 ../Rpmdrake/gui.pm:775
#, c-format
msgid ""
"Because of their dependencies, the following package(s) must be unselected "
"now:\n"
"\n"
msgstr ""
"Из-за зависимостей выбор следующих пакетов в данный момент\n"
"должен быть отменён:\n"
"\n"

#: ../Rpmdrake/gui.pm:728
#, c-format
msgid "Additional packages needed"
msgstr "Требуются дополнительные пакеты"

#: ../Rpmdrake/gui.pm:729
#, c-format
msgid ""
"To satisfy dependencies, the following package(s) also need to be "
"installed:\n"
"\n"
msgstr ""
"Для удовлетворения зависимостей должны быть установлены\n"
"следующие пакеты:\n"
"\n"

#: ../Rpmdrake/gui.pm:737
#, c-format
msgid "Conflicting Packages"
msgstr "Конфликтующие пакеты"

#: ../Rpmdrake/gui.pm:751
#, c-format
msgid "%s (belongs to the skip list)"
msgstr "%s (входит в список пропущенных)"

#: ../Rpmdrake/gui.pm:755
#, c-format
msgid "One package cannot be installed"
msgstr "Один пакет не может быть установлен"

#: ../Rpmdrake/gui.pm:755
#, c-format
msgid "Some packages can't be installed"
msgstr "Некоторые пакеты не могут быть установлены"

#: ../Rpmdrake/gui.pm:757
#, c-format
msgid ""
"Sorry, the following package cannot be selected:\n"
"\n"
"%s"
msgstr ""
"Следующий пакет невозможно выбрать:\n"
"\n"
"%s"

#: ../Rpmdrake/gui.pm:758
#, c-format
msgid ""
"Sorry, the following packages can't be selected:\n"
"\n"
"%s"
msgstr ""
"Следующие пакеты невозможно выбрать:\n"
"\n"
"%s"

#: ../Rpmdrake/gui.pm:774 ../Rpmdrake/pkg.pm:674
#, c-format
msgid "Some packages need to be removed"
msgstr "Некоторые пакеты должны быть удалены"

#: ../Rpmdrake/gui.pm:809
#, c-format
msgid "Some packages are selected."
msgstr "Выбраны похожие пакеты"

#: ../Rpmdrake/gui.pm:809
#, c-format
msgid "Do you really want to quit?"
msgstr "Вы точно хотите выйти?"

#: ../Rpmdrake/gui.pm:818
#, c-format
msgid "Error: %s appears to be mounted read-only."
msgstr "Ошибка: %s примонтирован только для чтения."

#: ../Rpmdrake/gui.pm:822
#, c-format
msgid "You need to select some packages first."
msgstr "Необходимо сначала выбрать какие-либо пакеты."

#: ../Rpmdrake/gui.pm:827
#, c-format
msgid "Too many packages are selected"
msgstr "Выбрано слишком много пакетов"

#: ../Rpmdrake/gui.pm:828
#, c-format
msgid ""
"Warning: it seems that you are attempting to add so much\n"
"packages that your filesystem may run out of free diskspace,\n"
"during or after package installation ; this is particularly\n"
"dangerous and should be considered with care.\n"
"\n"
"Do you really want to install all the selected packages?"
msgstr ""
"Предупреждение: выполняется попытка добавить слишком\n"
"много пакетов, из-за чего в файловой системе не хватит\n"
"свободного места во время или после установки пакетов; это\n"
"чрезвычайно опасно и должно быть внимательно изучено.\n"
"\n"
"Установить все выбранные пакеты?"

#: ../Rpmdrake/gui.pm:855 ../Rpmdrake/open_db.pm:99
#, c-format
msgid "Fatal error"
msgstr "Неисправимая ошибка"

#: ../Rpmdrake/gui.pm:856 ../Rpmdrake/open_db.pm:100 ../Rpmdrake/pkg.pm:450
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Произошла критическая ошибка: %s."

#: ../Rpmdrake/gui.pm:891
#, c-format
msgid "Please wait, listing packages..."
msgstr "Подождите, составляется список пакетов..."

#: ../Rpmdrake/gui.pm:904
#, c-format
msgid "No update"
msgstr "Обновлений нет"

#: ../Rpmdrake/gui.pm:931 ../Rpmdrake/icon.pm:35 ../rpmdrake:215
#: ../rpmdrake:371 ../rpmdrake:398
#, c-format
msgid "All"
msgstr "Все"

#: ../Rpmdrake/gui.pm:941 ../rpmdrake:204
#, c-format
msgid "Upgradable"
msgstr "Можно обновить"

#: ../Rpmdrake/gui.pm:941 ../rpmdrake:372
#, c-format
msgid "Installed"
msgstr "Установлен"

#: ../Rpmdrake/gui.pm:942 ../rpmdrake:204
#, c-format
msgid "Addable"
msgstr "Можно добавить"

#: ../Rpmdrake/gui.pm:954
#, c-format
msgid "Description not available for this package\n"
msgstr "Для данного пакета нет описания\n"

#: ../Rpmdrake/icon.pm:36
#, c-format
msgid "Accessibility"
msgstr "Удобство"

#: ../Rpmdrake/icon.pm:37 ../Rpmdrake/icon.pm:38 ../Rpmdrake/icon.pm:39
#: ../Rpmdrake/icon.pm:40 ../Rpmdrake/icon.pm:41
#, c-format
msgid "Archiving"
msgstr "Архивирование"

#: ../Rpmdrake/icon.pm:38
#, c-format
msgid "Backup"
msgstr "Резервирование"

#: ../Rpmdrake/icon.pm:39
#, c-format
msgid "Cd burning"
msgstr "Запись CD"

#: ../Rpmdrake/icon.pm:40
#, c-format
msgid "Compression"
msgstr "Сжатие"

#: ../Rpmdrake/icon.pm:41 ../Rpmdrake/icon.pm:47 ../Rpmdrake/icon.pm:58
#: ../Rpmdrake/icon.pm:72 ../Rpmdrake/icon.pm:90 ../Rpmdrake/icon.pm:111
#: ../Rpmdrake/icon.pm:124 ../Rpmdrake/icon.pm:135
#, c-format
msgid "Other"
msgstr "Другое"

#: ../Rpmdrake/icon.pm:42 ../Rpmdrake/icon.pm:43 ../Rpmdrake/icon.pm:44
#: ../Rpmdrake/icon.pm:45 ../Rpmdrake/icon.pm:46 ../Rpmdrake/icon.pm:47
#, c-format
msgid "Books"
msgstr "Книги"

#: ../Rpmdrake/icon.pm:43
#, c-format
msgid "Computer books"
msgstr "Компьютерные книги"

#: ../Rpmdrake/icon.pm:44
#, c-format
msgid "Faqs"
msgstr "FAQ'и"

#: ../Rpmdrake/icon.pm:45
#, c-format
msgid "Howtos"
msgstr "HOWTO"

#: ../Rpmdrake/icon.pm:46
#, c-format
msgid "Literature"
msgstr "Литература"

#: ../Rpmdrake/icon.pm:48
#, c-format
msgid "Communications"
msgstr "Связь"

#: ../Rpmdrake/icon.pm:49 ../Rpmdrake/icon.pm:53
#, c-format
msgid "Databases"
msgstr "Базы данных"

#: ../Rpmdrake/icon.pm:50 ../Rpmdrake/icon.pm:51 ../Rpmdrake/icon.pm:52
#: ../Rpmdrake/icon.pm:53 ../Rpmdrake/icon.pm:54 ../Rpmdrake/icon.pm:55
#: ../Rpmdrake/icon.pm:56 ../Rpmdrake/icon.pm:57 ../Rpmdrake/icon.pm:58
#: ../Rpmdrake/icon.pm:59 ../Rpmdrake/icon.pm:60 ../Rpmdrake/icon.pm:61
#: ../Rpmdrake/icon.pm:62 ../Rpmdrake/icon.pm:173 ../Rpmdrake/icon.pm:174
#: ../Rpmdrake/icon.pm:175
#, c-format
msgid "Development"
msgstr "Разработка"

#: ../Rpmdrake/icon.pm:51
#, c-format
msgid "C"
msgstr "C"

#: ../Rpmdrake/icon.pm:52
#, c-format
msgid "C++"
msgstr "C++"

#: ../Rpmdrake/icon.pm:54
#, c-format
msgid "GNOME and GTK+"
msgstr "GNOME и GTK+"

#: ../Rpmdrake/icon.pm:55
#, c-format
msgid "Java"
msgstr "Java"

#: ../Rpmdrake/icon.pm:56
#, c-format
msgid "KDE and Qt"
msgstr "KDE и Qt"

#: ../Rpmdrake/icon.pm:57
#, c-format
msgid "Kernel"
msgstr "Ядро"

#: ../Rpmdrake/icon.pm:59
#, c-format
msgid "Perl"
msgstr "Perl"

#: ../Rpmdrake/icon.pm:60
#, c-format
msgid "PHP"
msgstr "PHP"

#: ../Rpmdrake/icon.pm:61
#, c-format
msgid "Python"
msgstr "Python"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:62 ../Rpmdrake/icon.pm:150
#, c-format
msgid "X11"
msgstr "X11"

#: ../Rpmdrake/icon.pm:63
#, c-format
msgid "Editors"
msgstr "Редакторы"

#: ../Rpmdrake/icon.pm:64
#, c-format
msgid "Education"
msgstr "Образование"

#: ../Rpmdrake/icon.pm:65
#, c-format
msgid "Emulators"
msgstr "Эмуляторы"

#: ../Rpmdrake/icon.pm:66
#, c-format
msgid "File tools"
msgstr "Файловые утилиты"

#: ../Rpmdrake/icon.pm:67 ../Rpmdrake/icon.pm:68 ../Rpmdrake/icon.pm:69
#: ../Rpmdrake/icon.pm:70 ../Rpmdrake/icon.pm:71 ../Rpmdrake/icon.pm:72
#: ../Rpmdrake/icon.pm:73 ../Rpmdrake/icon.pm:74 ../Rpmdrake/icon.pm:75
#, c-format
msgid "Games"
msgstr "Игры"

#: ../Rpmdrake/icon.pm:68
#, c-format
msgid "Adventure"
msgstr "Приключения"

#: ../Rpmdrake/icon.pm:69
#, c-format
msgid "Arcade"
msgstr "Аркады"

#: ../Rpmdrake/icon.pm:70
#, c-format
msgid "Boards"
msgstr "Настольные"

#: ../Rpmdrake/icon.pm:71
#, c-format
msgid "Cards"
msgstr "Карточные"

#: ../Rpmdrake/icon.pm:73
#, c-format
msgid "Puzzles"
msgstr "Головоломки"

#: ../Rpmdrake/icon.pm:74
#, c-format
msgid "Sports"
msgstr "Спортивные"

#: ../Rpmdrake/icon.pm:75
#, c-format
msgid "Strategy"
msgstr "Стратегии"

#: ../Rpmdrake/icon.pm:76 ../Rpmdrake/icon.pm:77 ../Rpmdrake/icon.pm:80
#: ../Rpmdrake/icon.pm:81 ../Rpmdrake/icon.pm:84 ../Rpmdrake/icon.pm:87
#: ../Rpmdrake/icon.pm:90 ../Rpmdrake/icon.pm:91 ../Rpmdrake/icon.pm:94
#: ../Rpmdrake/icon.pm:97
#, c-format
msgid "Graphical desktop"
msgstr "Графический рабочий стол"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:79
#, c-format
msgid "Enlightenment"
msgstr "Enlightenment"

#: ../Rpmdrake/icon.pm:80
#, c-format
msgid "FVWM based"
msgstr "На основе FVWM"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:83
#, c-format
msgid "GNOME"
msgstr "GNOME"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:86
#, c-format
msgid "Icewm"
msgstr "IceWM"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:89
#, c-format
msgid "KDE"
msgstr "KDE"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:93
#, c-format
msgid "Sawfish"
msgstr "Sawfish"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:96
#, c-format
msgid "WindowMaker"
msgstr "WindowMaker"

#. -PO: This is a package/product name. Only translate it if needed:
#: ../Rpmdrake/icon.pm:99
#, c-format
msgid "Xfce"
msgstr "Xfce"

#: ../Rpmdrake/icon.pm:100
#, c-format
msgid "Graphics"
msgstr "Графика"

#: ../Rpmdrake/icon.pm:101
#, c-format
msgid "Monitoring"
msgstr "Мониторинг"

#: ../Rpmdrake/icon.pm:102 ../Rpmdrake/icon.pm:103
#, c-format
msgid "Multimedia"
msgstr "Мультимедиа"

#: ../Rpmdrake/icon.pm:103 ../Rpmdrake/icon.pm:154
#, c-format
msgid "Video"
msgstr "Видео"

#: ../Rpmdrake/icon.pm:104 ../Rpmdrake/icon.pm:105 ../Rpmdrake/icon.pm:106
#: ../Rpmdrake/icon.pm:107 ../Rpmdrake/icon.pm:108 ../Rpmdrake/icon.pm:109
#: ../Rpmdrake/icon.pm:110 ../Rpmdrake/icon.pm:111 ../Rpmdrake/icon.pm:112
#: ../Rpmdrake/icon.pm:113 ../Rpmdrake/icon.pm:134
#, c-format
msgid "Networking"
msgstr "Сеть"

#: ../Rpmdrake/icon.pm:105
#, c-format
msgid "Chat"
msgstr "Чат"

#: ../Rpmdrake/icon.pm:106
#, c-format
msgid "File transfer"
msgstr "Передача файла"

#: ../Rpmdrake/icon.pm:107
#, c-format
msgid "IRC"
msgstr "IRC"

#: ../Rpmdrake/icon.pm:108
#, c-format
msgid "Instant messaging"
msgstr "Обмен мгновенными сообщениями"

#: ../Rpmdrake/icon.pm:109 ../Rpmdrake/icon.pm:180
#, c-format
msgid "Mail"
msgstr "Почта"

#: ../Rpmdrake/icon.pm:110
#, c-format
msgid "News"
msgstr "Новости"

#: ../Rpmdrake/icon.pm:112
#, c-format
msgid "Remote access"
msgstr "Удалённый доступ"

#: ../Rpmdrake/icon.pm:113
#, c-format
msgid "WWW"
msgstr "WWW"

#: ../Rpmdrake/icon.pm:114
#, c-format
msgid "Office"
msgstr "Офис"

#: ../Rpmdrake/icon.pm:115
#, c-format
msgid "Public Keys"
msgstr "Публичные ключи"

#: ../Rpmdrake/icon.pm:116
#, c-format
msgid "Publishing"
msgstr "Издательство"

#: ../Rpmdrake/icon.pm:117 ../Rpmdrake/icon.pm:118 ../Rpmdrake/icon.pm:119
#: ../Rpmdrake/icon.pm:120 ../Rpmdrake/icon.pm:121 ../Rpmdrake/icon.pm:122
#: ../Rpmdrake/icon.pm:123 ../Rpmdrake/icon.pm:124 ../Rpmdrake/icon.pm:125
#, c-format
msgid "Sciences"
msgstr "Наука"

#: ../Rpmdrake/icon.pm:118
#, c-format
msgid "Astronomy"
msgstr "Астрономия"

#: ../Rpmdrake/icon.pm:119
#, c-format
msgid "Biology"
msgstr "Биология"

#: ../Rpmdrake/icon.pm:120
#, c-format
msgid "Chemistry"
msgstr "Химия"

#: ../Rpmdrake/icon.pm:121
#, c-format
msgid "Computer science"
msgstr "Компьютерная наука"

#: ../Rpmdrake/icon.pm:122
#, c-format
msgid "Geosciences"
msgstr "География"

#: ../Rpmdrake/icon.pm:123
#, c-format
msgid "Mathematics"
msgstr "Математика"

#: ../Rpmdrake/icon.pm:125
#, c-format
msgid "Physics"
msgstr "Физика"

#: ../Rpmdrake/icon.pm:126
#, c-format
msgid "Shells"
msgstr "Командные процессоры"

#: ../Rpmdrake/icon.pm:127
#, c-format
msgid "Sound"
msgstr "Звук"

#: ../Rpmdrake/icon.pm:128 ../Rpmdrake/icon.pm:129 ../Rpmdrake/icon.pm:130
#: ../Rpmdrake/icon.pm:131 ../Rpmdrake/icon.pm:132 ../Rpmdrake/icon.pm:133
#: ../Rpmdrake/icon.pm:134 ../Rpmdrake/icon.pm:135 ../Rpmdrake/icon.pm:136
#: ../Rpmdrake/icon.pm:137 ../Rpmdrake/icon.pm:138 ../Rpmdrake/icon.pm:139
#: ../Rpmdrake/icon.pm:140 ../Rpmdrake/icon.pm:141 ../Rpmdrake/icon.pm:142
#: ../Rpmdrake/icon.pm:143 ../Rpmdrake/icon.pm:144 ../Rpmdrake/icon.pm:145
#: ../Rpmdrake/icon.pm:146 ../Rpmdrake/icon.pm:147 ../Rpmdrake/icon.pm:148
#, c-format
msgid "System"
msgstr "Система"

#: ../Rpmdrake/icon.pm:129
#, c-format
msgid "Base"
msgstr "Стандартные"

#: ../Rpmdrake/icon.pm:130
#, c-format
msgid "Cluster"
msgstr "Кластер"

#: ../Rpmdrake/icon.pm:131 ../Rpmdrake/icon.pm:132 ../Rpmdrake/icon.pm:133
#: ../Rpmdrake/icon.pm:134 ../Rpmdrake/icon.pm:135 ../Rpmdrake/icon.pm:136
#: ../Rpmdrake/icon.pm:137 ../Rpmdrake/icon.pm:158
#, c-format
msgid "Configuration"
msgstr "Настройка"

#: ../Rpmdrake/icon.pm:132
#, c-format
msgid "Boot and Init"
msgstr "Загрузка и инициализация"

#: ../Rpmdrake/icon.pm:133
#, c-format
msgid "Hardware"
msgstr "Оборудование"

#: ../Rpmdrake/icon.pm:136
#, c-format
msgid "Packaging"
msgstr "Пакеты"

#: ../Rpmdrake/icon.pm:137 ../Rpmdrake/icon.pm:146
#, c-format
msgid "Printing"
msgstr "Печать"

#: ../Rpmdrake/icon.pm:138 ../Rpmdrake/icon.pm:139 ../Rpmdrake/icon.pm:140
#: ../Rpmdrake/icon.pm:141 ../Rpmdrake/icon.pm:142
#, c-format
msgid "Fonts"
msgstr "Шрифты"

#: ../Rpmdrake/icon.pm:139
#, c-format
msgid "Console"
msgstr "Консоль"

#: ../Rpmdrake/icon.pm:140
#, c-format
msgid "True type"
msgstr "True Type"

#: ../Rpmdrake/icon.pm:141
#, c-format
msgid "Type1"
msgstr "Type1"

#: ../Rpmdrake/icon.pm:142
#, c-format
msgid "X11 bitmap"
msgstr "X11 bitmap"

#: ../Rpmdrake/icon.pm:143
#, c-format
msgid "Internationalization"
msgstr "Локализация"

#: ../Rpmdrake/icon.pm:144
#, c-format
msgid "Kernel and hardware"
msgstr "Ядро и оборудование"

#: ../Rpmdrake/icon.pm:145
#, c-format
msgid "Libraries"
msgstr "Библиотеки"

#: ../Rpmdrake/icon.pm:147
#, c-format
msgid "Servers"
msgstr "Серверы"

#: ../Rpmdrake/icon.pm:151
#, c-format
msgid "Terminals"
msgstr "Терминалы"

#: ../Rpmdrake/icon.pm:152
#, c-format
msgid "Text tools"
msgstr "Текстовые утилиты"

#: ../Rpmdrake/icon.pm:153
#, c-format
msgid "Toys"
msgstr "Игрушки"

#: ../Rpmdrake/icon.pm:157 ../Rpmdrake/icon.pm:158 ../Rpmdrake/icon.pm:159
#: ../Rpmdrake/icon.pm:160 ../Rpmdrake/icon.pm:161 ../Rpmdrake/icon.pm:162
#: ../Rpmdrake/icon.pm:163 ../Rpmdrake/icon.pm:164 ../Rpmdrake/icon.pm:165
#: ../Rpmdrake/icon.pm:166
#, c-format
msgid "Workstation"
msgstr "Рабочая станция"

#: ../Rpmdrake/icon.pm:159
#, c-format
msgid "Console Tools"
msgstr "Утилиты для консоли"

#: ../Rpmdrake/icon.pm:160 ../Rpmdrake/icon.pm:175
#, c-format
msgid "Documentation"
msgstr "Документация"

#: ../Rpmdrake/icon.pm:161
#, c-format
msgid "Game station"
msgstr "Игровая станция"

#: ../Rpmdrake/icon.pm:162
#, c-format
msgid "Internet station"
msgstr "Интернет-станция"

#: ../Rpmdrake/icon.pm:163
#, c-format
msgid "Multimedia station"
msgstr "Мультимедиа-станция"

#: ../Rpmdrake/icon.pm:164
#, c-format
msgid "Network Computer (client)"
msgstr "Сетевой компьютер (клиент)"

#: ../Rpmdrake/icon.pm:165
#, c-format
msgid "Office Workstation"
msgstr "Офисная рабочая станция"

#: ../Rpmdrake/icon.pm:166
#, c-format
msgid "Scientific Workstation"
msgstr "Научная рабочая станция"

#: ../Rpmdrake/icon.pm:167 ../Rpmdrake/icon.pm:169 ../Rpmdrake/icon.pm:170
#: ../Rpmdrake/icon.pm:171 ../Rpmdrake/icon.pm:172
#, c-format
msgid "Graphical Environment"
msgstr "Графическая среда"

#: ../Rpmdrake/icon.pm:169
#, c-format
msgid "GNOME Workstation"
msgstr "Рабочая станция GNOME"

#: ../Rpmdrake/icon.pm:170
#, c-format
msgid "IceWm Desktop"
msgstr "Рабочий стол IceWm"

#: ../Rpmdrake/icon.pm:171
#, c-format
msgid "KDE Workstation"
msgstr "Рабочая станция KDE"

#: ../Rpmdrake/icon.pm:172
#, c-format
msgid "Other Graphical Desktops"
msgstr "Другие графические рабочие столы"

#: ../Rpmdrake/icon.pm:176 ../Rpmdrake/icon.pm:177 ../Rpmdrake/icon.pm:178
#: ../Rpmdrake/icon.pm:179 ../Rpmdrake/icon.pm:180 ../Rpmdrake/icon.pm:181
#: ../Rpmdrake/icon.pm:182 ../Rpmdrake/icon.pm:183
#, c-format
msgid "Server"
msgstr "Сервер"

#: ../Rpmdrake/icon.pm:177
#, c-format
msgid "DNS/NIS"
msgstr "DNS/NIS"

#: ../Rpmdrake/icon.pm:178
#, c-format
msgid "Database"
msgstr "База данных"

#: ../Rpmdrake/icon.pm:179
#, c-format
msgid "Firewall/Router"
msgstr "Файервол/маршрутизатор"

#: ../Rpmdrake/icon.pm:181
#, c-format
msgid "Mail/Groupware/News"
msgstr "Почта/групповое ПО/новости"

#: ../Rpmdrake/icon.pm:182
#, c-format
msgid "Network Computer server"
msgstr "Сервер сети"

#: ../Rpmdrake/icon.pm:183
#, c-format
msgid "Web/FTP"
msgstr "Веб/FTP"

#: ../Rpmdrake/init.pm:49
#, c-format
msgid "Usage: %s [OPTION]..."
msgstr "Использование: %s [ПАРАМЕТРЫ]..."

#: ../Rpmdrake/init.pm:50
#, c-format
msgid "  --auto                 assume default answers to questions"
msgstr ""
"  --auto                 использовать ответ по умолчанию для всех вопросов"

#: ../Rpmdrake/init.pm:51
#, c-format
msgid ""
"  --changelog-first      display changelog before filelist in the "
"description window"
msgstr ""
"  --changelog-first      показать журнал изменений перед списком файлов в "
"окне с описанием"

#: ../Rpmdrake/init.pm:52
#, c-format
msgid "  --media=medium1,..     limit to given media"
msgstr "  --media=источник1,..   ограничиться указанными источниками"

#: ../Rpmdrake/init.pm:53
#, c-format
msgid ""
"  --merge-all-rpmnew     propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
"  --merge-all-rpmnew     объединить все найденные файлы .rpmnew/.rpmsave"

#: ../Rpmdrake/init.pm:54
#, c-format
msgid "  --mode=MODE            set mode (install (default), remove, update)"
msgstr ""
"  --mode=РЕЖИМ           установить режим (install (по умолчанию), remove, "
"update)"

#: ../Rpmdrake/init.pm:55
#, c-format
msgid ""
"  --justdb               update the database, but do not modify the "
"filesystem"
msgstr ""
"  --justdb               обновить базу данных, но не изменять файловую "
"систему"

#: ../Rpmdrake/init.pm:56
#, c-format
msgid ""
"  --no-confirmation      don't ask first confirmation question in update mode"
msgstr ""
"  --no-confirmation      не выводить первый запрос на подтверждение в режиме "
"update"

#: ../Rpmdrake/init.pm:57
#, c-format
msgid "  --no-media-update      don't update media at startup"
msgstr "  --no-media-update      не обновлять источник при запуске"

#: ../Rpmdrake/init.pm:58
#, c-format
msgid "  --no-verify-rpm        don't verify packages signatures"
msgstr "  --no-verify-rpm        не проверять подписи пакетов"

#: ../Rpmdrake/init.pm:59
#, c-format
msgid ""
"  --parallel=alias,host  be in parallel mode, use \"alias\" group, use \"host"
"\" machine to show needed deps"
msgstr ""
"  --parallel=алиас,хост  параллельный режим; используйте группу «alias», "
"используйте машину «host», чтобы увидеть необходимые зависимости"

#: ../Rpmdrake/init.pm:60
#, c-format
msgid "  --rpm-root=path        use another root for rpm installation"
msgstr ""
"  --rpm-root=путь        использовать другой корневой каталог\n"
"                         для установки rpm-пакета"

#: ../Rpmdrake/init.pm:61
#, c-format
msgid ""
"  --urpmi-root           use another root for urpmi db & rpm installation"
msgstr ""
"  --urpmi-root           использовать другой корень для базы данных urpmi и "
"установки пакетов."

#: ../Rpmdrake/init.pm:62
#, c-format
msgid "  --root                 force to run as root"
msgstr ""
"  --root                 принудительный запуск с правами пользователя root"

#: ../Rpmdrake/init.pm:62
#, c-format
msgid "(Deprecated)"
msgstr "(устарел)"

#: ../Rpmdrake/init.pm:63
#, c-format
msgid "  --run-as-root          force to run as root"
msgstr ""
"  --run-as-root          принудительный запуск с правами пользователя root"

#: ../Rpmdrake/init.pm:64
#, c-format
msgid "  --search=pkg           run search for \"pkg\""
msgstr "  --search=пакет         найти «пакет»"

#: ../Rpmdrake/init.pm:65
#, c-format
msgid ""
"  --test                 only verify if the installation can be achieved "
"correctly"
msgstr "  --test                 только проверить, можно ли установить пакет"

#: ../Rpmdrake/init.pm:66
#, c-format
msgid "  --version              print this tool's version number\n"
msgstr "  --version              показать номер версии данной программы\n"

#: ../Rpmdrake/init.pm:155
#, c-format
msgid "Running in user mode"
msgstr "Запуск в режиме пользователя"

#: ../Rpmdrake/init.pm:156
#, c-format
msgid ""
"You are launching this program as a normal user.\n"
"You will not be able to perform modifications on the system,\n"
"but you may still browse the existing database."
msgstr ""
"Программа запускается с правами обычного пользователя.\n"
"В систему нельзя будет внести изменения, но\n"
"можно будет просмотреть существующую базу данных."

#: ../Rpmdrake/pkg.pm:111
#, c-format
msgid "Getting information from XML meta-data from %s..."
msgstr "Извлекаются данные из XML-файла с метаданными из %s..."

#: ../Rpmdrake/pkg.pm:115
#, c-format
msgid "Getting '%s' from XML meta-data..."
msgstr "Извлекается «%s» из XML--файла с метаданными..."

#: ../Rpmdrake/pkg.pm:118 ../Rpmdrake/pkg.pm:418 ../Rpmdrake/pkg.pm:694
#: ../Rpmdrake/pkg.pm:894 ../rpmdrake:137 ../rpmdrake.pm:365
#: ../rpmdrake.pm:574
#, c-format
msgid "Please wait"
msgstr "Подождите, пожалуйста"

#: ../Rpmdrake/pkg.pm:132
#, c-format
msgid "No xml info for medium \"%s\", only partial result for package %s"
msgstr ""
"для источника «%s» отсутствует xml-info; для пакета %s получен только "
"частичный результат"

#: ../Rpmdrake/pkg.pm:134
#, c-format
msgid ""
"No xml info for medium \"%s\", unable to return any result for package %s"
msgstr ""
"для источника «%s» отсутствует xml-info; для пакета %s невозможно получить "
"результат"

#: ../Rpmdrake/pkg.pm:187 ../Rpmdrake/pkg.pm:192
#, c-format
msgid "Downloading package `%s'..."
msgstr "Загружается пакет «%s»..."

#: ../Rpmdrake/pkg.pm:194
#, c-format
msgid "        %s%% of %s completed, ETA = %s, speed = %s"
msgstr "        %s%% из %s завершено, осталось времени = %s, скорость = %s"

#: ../Rpmdrake/pkg.pm:195
#, c-format
msgid "        %s%% completed, speed = %s"
msgstr "        %s%% завершено, скорость = %s"

#: ../Rpmdrake/pkg.pm:233 ../Rpmdrake/pkg.pm:674
#, c-format
msgid "Confirmation"
msgstr "Подтверждение"

#: ../Rpmdrake/pkg.pm:234
#, c-format
msgid ""
"I need to contact the mirror to get latest update packages.\n"
"Please check that your network is currently running.\n"
"\n"
"Is it ok to continue?"
msgstr ""
"Необходимо подключиться к зеркалу, чтобы получить самые\n"
"последние пакеты обновлений. Проверьте, чтобы сетевое\n"
"подключение было активным.\n"
"\n"
"Продолжить?"

#: ../Rpmdrake/pkg.pm:238
#, c-format
msgid "Do not ask me next time"
msgstr "Не спрашивать в следующий раз"

#: ../Rpmdrake/pkg.pm:247
#, c-format
msgid "Already existing update media"
msgstr "Уже существующий источник обновления"

#: ../Rpmdrake/pkg.pm:248
#, c-format
msgid ""
"You already have at least one update medium configured, but\n"
"all of them are currently disabled. You should run the Software\n"
"Media Manager to enable at least one (check it in the \"%s\"\n"
"column).\n"
"\n"
"Then, restart \"%s\"."
msgstr ""
"Источники обновлений настроены, но сейчас они все отключены.\n"
"С помощью менеджера источников программ включите хотя бы один\n"
"источник и проверьте столбец «%s»).\n"
"\n"
"А затем перезапустите «%s»."

#: ../Rpmdrake/pkg.pm:258
#, c-format
msgid ""
"You have no configured update media. MandrivaUpdate cannot operate without "
"any update media."
msgstr ""
"Источники обновлений не были настроены. Программа Mandriva Update не может "
"работать без источников обновлений."

#: ../Rpmdrake/pkg.pm:259 ../rpmdrake.pm:607
#, c-format
msgid ""
"I need to contact the Mandriva website to get the mirror list.\n"
"Please check that your network is currently running.\n"
"\n"
"Is it ok to continue?"
msgstr ""
"Необходимо подключиться к серверу Mandriva, чтобы загрузить\n"
"список зеркал. Проверьте, чтобы сетевое подключение\n"
"было активным.\n"
"\n"
"Продолжить?"

#: ../Rpmdrake/pkg.pm:266
#, c-format
msgid "How to choose manually your mirror"
msgstr "Как вручную выбрать своё зеркало"

#: ../Rpmdrake/pkg.pm:267
#, c-format
msgid ""
"You may also choose your desired mirror manually: to do so,\n"
"launch the Software Media Manager, and then add a `Security\n"
"updates' medium.\n"
"\n"
"Then, restart %s."
msgstr ""
"Предпочитаемое зеркало можно также выбрать вручную:\n"
"для этого запустите менеджер источников программ, а затем\n"