summaryrefslogtreecommitdiffstats
path: root/move/make_live
diff options
context:
space:
mode:
Diffstat (limited to 'move/make_live')
-rwxr-xr-xmove/make_live268
1 files changed, 0 insertions, 268 deletions
diff --git a/move/make_live b/move/make_live
deleted file mode 100755
index 0ddca9ace..000000000
--- a/move/make_live
+++ /dev/null
@@ -1,268 +0,0 @@
-#!/usr/bin/perl
-
-use lib "../perl-install";
-use common;
-use pkgs;
-use lang;
-
-@ARGV <= 1 or die "usage: make_live [live_location=/tmp/live_tree]\n";
-
-my $kernel_version = do {
- my @l = glob_('/export/Mandrake/RPMS/kernel-2.6*');
- @l >= 1 or die "can't find kernel";
- @l <= 1 or die "too many kernels";
- first(`rpm -qp --qf '%{name}' $l[0]` =~ /kernel-(.*)/);
-};
-
-sub installPackages() {
- output_p("$::prefix/etc/rpm/macros", "%_install_langs all\n");
- rename '/etc/rpm/macros', '/etc/rpm/macros.';
- system('cp', "$::prefix/etc/rpm/macros", '/etc/rpm/macros');
-
- mkdir_p("$::prefix/var/lib/rpm");
- mkdir_p("$::prefix/root/drakx");
-
-
- undef *install_any::setDefaultPackages;
- *install_any::setDefaultPackages = sub {};
-
- undef *install_any::getFile;
- *install_any::getFile = sub {
- my ($f, $o_method) = @_;
- log::l("getFile $f:$o_method");
- open(my $F, '/export/' . install_any::relGetFile($f)) or return;
- $F;
- };
-
- undef *c::kernel_version;
- *c::kernel_version = sub { $kernel_version };
-
- install_any::setPackages(my $o = $::o = {
- prefix => $::prefix,
- meta_class => 'desktop',
- default_packages => [
- qw(XFree86-server XFree86-xfs XFree86-FBDev),
- qw(openssh-server), #- fred wants it
- qw(alsa-utils newt), #- newt
- qw(davfs nfs-utils samba-server sane-backends xsane xsane-gimp ntp),
- qw(acpi acpid), #- so that removing acpi=ht will work
- qw(mountloop), #- crypted folders
- qw(dnotify), #- notification of /etc changes
- qw(mandrake-doc-drakxtools-en mandrake-doc-drakxtools-fr mandrake-doc-drakxtools-es mandrake-doc-drakxtools-it),
- qw(synaptics),
- #- network conf:
- qw(wireless-tools pcmcia-cs),
- #- zeroconf:
- qw(zcip dhcpcd tmdns),
- #- cnx stuff:
- qw(dhcp-client ppp kdenetwork-kppp ppp-pppoatm ppp-pppoe pptp-linux pptp-adsl rp-pppoe),
- #- ISDN stuff:
- qw(isdn4net ibod isdn4k-utils),
- #- network file sharing:
- qw(nfs-utils-clients samba-client),
- #- network drivers and firmwares:
- qw(eagle-usb speedtouch speedtouch_mgmt unicorn),
- qw(cups cups-drivers foomatic-db gimpprint hpoj libnet-snmp mtools mtoolsfm nmap printer-filters printer-testpages printer-utils scli xojpanel xpp), #- printer stuff
- qw(ATI_GLX ATI_GLX-utils NVIDIA_GLX),
- qw(hcfpcimodem hsflinmodem ltmodem ipw2100),
- qw(nxclient), #- proprietary soft from powerpack
- qw(xinput), #- for some mice
- qw(perl-Term-Readline-Gnu binutils bash-completion), #- allow debugging move
- qw(openssh-askpass-gnome), #- openssh-askpass for mountloop doesn't allow to click on ok/cancel buttons
- qw(clanbomber freeciv-client freeciv-server crack-attack kdegames), #- more games
- qw(numlock shorewall clamav unison mozilla),
- qw(xawtv zapping), #- tv apps
- qw(scribus scribus-i18n-de scribus-i18n-fr), #- John Jablonski says it's so much useful
- ],
- });
-
- my %compssUsersChoice = map { $_ => 1 } map { @{$_->{flags}} } values %{$o->{compssUsers}};
- $compssUsersChoice{$_} = 1 foreach qw(SYSTEM DVD USB SOUND BURNER UTF8 DOCS TV 3D INSTALL PHOTO);
- $compssUsersChoice{qq(LOCALES"$_")} = 1 foreach lang::langsLANGUAGE({ all => 1 });
-
- #- we don't want those
- foreach (qw(mdkonline quanta)) {
- my $pkg = pkgs::packageByName($o->{packages}, $_) or die "$_ not there anymore";
- $pkg->set_rate(0);
- }
-
- pkgs::setSelectedFromCompssList($o->{packages}, \%compssUsersChoice, 4, 0);
-
- my @toInstall = pkgs::packagesToInstall($o->{packages});
- local $ENV{DURING_INSTALL} = 1;
- $ENV{LD_LIBRARY_PATH} = "/lib:/usr/lib:/usr/X11R6/lib:/usr/lib/qt3/lib";
- pkgs::install($::prefix, 0, \@toInstall, $o->{packages});
-
- eval { fs::umount("$::prefix/proc") };
-
- unlink "/etc/rpm/macros";
- rename "/etc/rpm/macros.", "/etc/rpm/macros";
-}
-
-sub config_X_proprietary_drivers() {
- unlink "$::prefix/usr/lib/libGL.so";
-
- my %name_to_Driver = (NVIDIA_GLX => 'nvidia', ATI_GLX => 'fglrx');
-
- my $lib = 'libGL.so.1';
- symlinkf("/etc/X11/$lib", "$::prefix/usr/lib/$lib");
- foreach (keys %name_to_Driver) {
- my ($full_name) = run_program::rooted_get_stdout($::prefix, 'rpm', '-ql', $_) =~ m!/usr/lib/(\Q$lib\E\..*)! or die '';
- symlinkf($full_name, "$::prefix/usr/lib/$lib.$name_to_Driver{$_}");
- }
-
- #- nvidia's libglx.so is hardwired to the tls version, change this
- system("cd $::prefix/usr/X11R6/lib/modules/extensions ; ln -sf libglx.so.* libglx.so");
-
- #- remove the dirty hack done by NVIDIA_kernel-xxx proprietary package
- #- we do it by hand when needed
- substInFile { $_ = '' if $_ eq 'nvidia' } "$::prefix/etc/modules";
-}
-
-$::prefix = `make get_dest_livetree`;
-print "Making live in $::prefix directory.\n";
-
-eval { fs::umount("$::prefix/proc") };
-eval { rm_rf($::prefix) };
-output_p("$::prefix/etc/fstab", "none /proc proc defaults 0 0\n");
-
-installPackages();
-
-run_program::rooted($::prefix, 'ldconfig');
-any::fix_broken_alternatives();
-run_program::rooted($::prefix, 'fc-cache'); #- generate cache in all directories mentioned in config file
-
-run_program::rooted_or_die($::prefix, '/usr/lib/mozilla-1.6/mozilla-rebuild-databases.pl');
-
- #- system
-
-# de-complexify, use the default on any arch
-eval { rm_rf("$::prefix$_") } foreach '/lib/i686', '/lib/tls', '/usr/lib/tls', '/usr/X11R6/lib/tls', '/usr/X11R6/lib/modules/extensions/tls', '/usr/X11R6/lib/modules/dri/tls';
-
-eval { config_X_proprietary_drivers() };
-
-substInFile {
- #- /lib is ro, for the moment we don't save, we'll see later if we may want to save (using /var/dev-state for example)
- s|.*lib/dev-state.*||;
-} "$::prefix/etc/devfsd.conf";
-
-substInFile {
- #- don't use shadow passwords since pwconv overwrites /etc/shadow hence contents will be lost for usb key
- s|\s*shadow||;
-} "$::prefix/etc/pam.d/system-auth";
-
-substInFile {
- #- remove this line which D-state mounting /home again
- #- we don't know what this line is for
- $_ = "# $_" if /Mounting other filesystems/;
-} "$::prefix/etc/init.d/netfs";
-
-#- remove services we start ourselves from chkconfig system
-substInFile {
- s|chkconfig:|chkconfig-disabled:|;
-} "$::prefix/etc/rc.d/init.d/$_" foreach qw(xfs dm devfsd syslog);
-
-#- we're not using sysv init, we need to replace these
-unlink "$::prefix/sbin/$_" foreach qw(halt reboot);
-
-#- provide a way for speedtouch users of free version to escape
-if (!-e "$::prefix/usr/share/speedtouch/mgmt.o") {
- symlink '/etc/mgmt.o', "$::prefix/usr/share/speedtouch/mgmt.o";
-}
-
-#- we don't want everyone to have the same ssh key :)
-system("rm -f $::prefix/etc/ssh/*key*");
-
-
- #- XFree
-
-#- don't want the relative path, prefering the absolute path
-symlinkf('/var/lib/xkb', "$::prefix/etc/X11/xkb/compiled");
-
-#- Xsession wants to start first-time
-unlink "$::prefix/usr/X11R6/bin/drakfw";
-
-
- #- KDE
-
-unlink "$::prefix/usr/share/autostart/$_.desktop" foreach 'klipper', 'korgac', 'kalarmd.autostart';
-
-update_gnomekderc("$::prefix/usr/share/config/kdesktoprc", ScreenSaver => (Lock => 'true'));
-
-#- remove "Login Manager" module from kcontrol, rpmdrake stuff
-unlink "$::prefix/usr/lib/menu/$_" foreach qw(kdebase-kdm rpmdrake);
-
-touch("$::prefix/etc/menu/enable_simplified");
-
-substInFile {
- s/mandrake_doc-(en|fr)/mandrake_doc-move-$1/g;
- $_ = '' if m!/usr/sbin/drakbackup!;
-} "$::prefix/usr/lib/menu/simplified/mandrake_desk";
-
-substInFile {
- s!/es/Starter.html/!/en/Starter.html/!;
-} "$::prefix/usr/share/mdk/mandrakegalaxy/mdkgalaxy-es.html";
-
-substInFile {
- if (!/mimetypes=/) {
- chomp;
- $_ .= ' mimetypes="image/gif;image/jpeg;image/png;image/tiff;image/x-xbm;image/x-xpm;image/bmp;image/fits;image/pcx;image/pix;image/pnm;image/x-bmp"';
- $_ .= ' kde_opt="InitialPreference=15"' . "\n";
- }
-} "$::prefix/usr/lib/menu/gqview";
-
-{
- local $ENV{LC_ALL} = 'en_US'; #- update-menus doesn't work when there is no locale (aka locale "C")
- local $ENV{HOME} = '/'; #- savekdemimetypes.pl needs this otherwise it's tmp file fails
- run_program::rooted($::prefix, 'update-menus', '-n');
-}
-
-run_program::rooted($::prefix, 'nspluginscan'); #- must be run before kbuildsycoca for the ksycoca to be flash plugin aware
-
-$ENV{HELP_BROWSER} = "kfmclient openProfile webbrowsing";
-$ENV{BROWSER} = "kfmclient openProfile webbrowsing";
-$ENV{DESKTOP} = "kde";
-foreach my $lang (lang::list_langs()) {
- local $ENV{LC_ALL} = lang::getLANGUAGE($lang);
- unlink "$::prefix/usr/share/services/ksycoca";
- run_program::rooted($::prefix, 'kbuildsycoca', '--global');
- rename("$::prefix/usr/share/services/ksycoca", "$::prefix/usr/share/services/ksycoca-$lang");
-}
-symlinkf('/etc/X11/ksycoca', "$::prefix/usr/share/services/ksycoca");
-
-cp_af("$::prefix/usr/share/applnk-mdk/System/Configuration/Hardware/krandrtray.desktop", "$::prefix/usr/share/autostart");
-
- #- Mandrake
-
-substInFile {
- s|Mandrake Linux release (\S+) \(.*\)|Mandrake Move release $1 (Moyoto)|;
-} "$::prefix/etc/mandrake-release";
-
-#- remove documentation link in mdkgalaxy
-foreach (glob("$::prefix/usr/share/mdk/mandrakegalaxy/mdkgalaxy-*.html")) {
- my $nb;
- substInFile {
- if (m!/Starter.html! ... m!^\s*</td>$!) {
- $_ = '';
- $nb++;
- }
- } $_;
- $nb % 4 == 0 or die "bad $_\n";
-}
-
-rm_rf("$::prefix/usr/share/locale/en_ZA");
-
-#- remove uncessary wizards, especially from appearing in MCC
-unlink "$::prefix/usr/sbin/$_" foreach qw(drakautoinst drakboot drakfloppy drakgw drakbackup drakedm drakfont drakperm draksec rpmdrake MandrakeUpdate rpmdrake-remove edit-urpm-sources.pl);
-unlink "$::prefix/usr/bin/$_" foreach qw(userdrake);
-
-#- selecting language must be done from drakx anyway
-unlink "$::prefix/usr/bin/localedrake";
-
-#- fix openoffice autopilote feature
-foreach (glob("$::prefix/usr/lib/openoffice/share/template/*")) {
- symlink '../../english/wizard/bitmap', "$_/wizard/bitmap";
-}
-
-# fix nxclient
-system("chmod a+x $::prefix/etc/profile.d/nx*");
9 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714
# Translation of cs.po to Czech
# Copyright (C) 1999,2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
#
# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000, 2001-2003.
# Michal Bukovjan <bukm@centrum.cz>, 2002-2003, 2004, 2005, 2006, 2007, 2008.
msgid ""
msgstr ""
"Project-Id-Version: cs\n"
"POT-Creation-Date: 2008-01-31 11:40+0100\n"
"PO-Revision-Date: 2008-02-17 23:29+0100\n"
"Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: KBabel 1.11.4\n"

#: ../lib/Xconfig/card.pm:19
#, c-format
msgid "256 kB"
msgstr "256 kB"

#: ../lib/Xconfig/card.pm:20
#, c-format
msgid "512 kB"
msgstr "512 kB"

#: ../lib/Xconfig/card.pm:21
#, c-format
msgid "1 MB"
msgstr "1 MB"

#: ../lib/Xconfig/card.pm:22
#, c-format
msgid "2 MB"
msgstr "2 MB"

#: ../lib/Xconfig/card.pm:23
#, c-format
msgid "4 MB"
msgstr "4 MB"

#: ../lib/Xconfig/card.pm:24
#, c-format
msgid "8 MB"
msgstr "8 MB"

#: ../lib/Xconfig/card.pm:25
#, c-format
msgid "16 MB"
msgstr "16 MB"

#: ../lib/Xconfig/card.pm:26
#, c-format
msgid "32 MB"
msgstr "32 MB"

#: ../lib/Xconfig/card.pm:27
#, c-format
msgid "64 MB or more"
msgstr "64 MB nebo více"

#: ../lib/Xconfig/card.pm:169
#, c-format
msgid "X server"
msgstr "X server"

#: ../lib/Xconfig/card.pm:170
#, c-format
msgid "Choose an X server"
msgstr "Zvolte X server"

#: ../lib/Xconfig/card.pm:201
#, c-format
msgid "Multi-head configuration"
msgstr "Konfigurace dvou monitorů"

#: ../lib/Xconfig/card.pm:202
#, c-format
msgid ""
"Your system supports multiple head configuration.\n"
"What do you want to do?"
msgstr ""
"Váš systém podporuje zobrazení na dvou monitorech.\n"
"Co chcete dělat?"

#: ../lib/Xconfig/card.pm:273
#, c-format
msgid "Select the memory size of your graphics card"
msgstr "Vyberte velikost paměti vaší grafické karty"

#: ../lib/Xconfig/card.pm:298
#, c-format
msgid ""
"There is a proprietary driver available for your video card which may "
"support additional features.\n"
"Do you wish to use it?"
msgstr ""
"Pro vaši grafickou kartu je dostupný proprietární ovladač, který může "
"podporovat více vlastností.\n"
"Přejete si jej používat?"

#: ../lib/Xconfig/card.pm:325
#, c-format
msgid ""
"The proprietary driver was not properly installed, defaulting to free "
"software driver."
msgstr "Proprietární ovladač nebyl řádně nainstalován, použije se otevřený ovladač."

#: ../lib/Xconfig/card.pm:392
#, c-format
msgid "Configure all heads independently"
msgstr "Konfigurovat všechny monitory nezávisle"

#: ../lib/Xconfig/card.pm:393
#, c-format
msgid "Use Xinerama extension"
msgstr "Použít rozšíření Xinerama"

#: ../lib/Xconfig/card.pm:398
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurovat pouze kartu \"%s\"%s"

#: ../lib/Xconfig/main.pm:88 ../lib/Xconfig/main.pm:89
#: ../lib/Xconfig/monitor.pm:120
#, c-format
msgid "Custom"
msgstr "Vlastní"

#: ../lib/Xconfig/main.pm:123
#, c-format
msgid "Graphic Card & Monitor Configuration"
msgstr "Nastavení grafické karty a monitoru"

#: ../lib/Xconfig/main.pm:124
#, c-format
msgid "Quit"
msgstr "Konec"

#: ../lib/Xconfig/main.pm:126
#, c-format
msgid "Graphic Card"
msgstr "Grafická karta"

#: ../lib/Xconfig/main.pm:129 ../lib/Xconfig/monitor.pm:114
#, c-format
msgid ""
"_: This is a display device\n"
"Monitor"
msgstr "Monitor"

#: ../lib/Xconfig/main.pm:132 ../lib/Xconfig/resolution_and_depth.pm:320
#, c-format
msgid "Resolution"
msgstr "Rozlišení"

#: ../lib/Xconfig/main.pm:135
#, c-format
msgid "Test"
msgstr "Test"

#: ../lib/Xconfig/main.pm:140
#, c-format
msgid "Options"
msgstr "Volby"

#: ../lib/Xconfig/main.pm:145
#, c-format
msgid "Plugins"
msgstr "Moduly"

#: ../lib/Xconfig/main.pm:179
#, c-format
msgid "Your Xorg configuration file is broken, we will ignore it."
msgstr "Váš soubor s nastavením X.org je poškozený, bude ignorován."

#: ../lib/Xconfig/main.pm:197
#, c-format
msgid ""
"Keep the changes?\n"
"The current configuration is:\n"
"\n"
"%s"
msgstr ""
"Zachovat změny?\n"
"Aktuální konfigurace je:\n"
"\n"
"%s"

#: ../lib/Xconfig/monitor.pm:115
#, c-format
msgid "Choose a monitor for head #%d"
msgstr "Zvolte monitor pro výstup č. %d"

#: ../lib/Xconfig/monitor.pm:115
#, c-format
msgid "Choose a monitor"
msgstr "Zvolte typ monitoru"

#: ../lib/Xconfig/monitor.pm:121
#, c-format
msgid "Plug'n Play"
msgstr "Plug'n Play"

#: ../lib/Xconfig/monitor.pm:122 ../lib/mouse.pm:47
#, c-format
msgid "Generic"
msgstr "Obecný"

#: ../lib/Xconfig/monitor.pm:123
#, c-format
msgid "Vendor"
msgstr "Dodavatel"

#: ../lib/Xconfig/monitor.pm:141
#, c-format
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
"at which the whole screen is refreshed, and most importantly the horizontal\n"
"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
"range\n"
"that is beyond the capabilities of your monitor: you may damage your "
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
"Dva rozhodující parametry jsou: vertikální synchronizační frekvence, což je\n"
"frekvence, kterou je obnovována celá obrazovka, a frekvence řádkové\n"
" synchronizace (horiz. sync. rate), což je frekvence jakou jsou zobrazovány\n"
"jednotlivé mikrořádky (scanline).\n"
"\n"
"Je VELMI DŮLEŽITÉ abyste nezvolili typ monitoru se schopnostmi vyššími než "
"má\n"
"váš monitor, protože byste si ho tím mohli poškodit. Jestliže si nejste "
"jistí\n"
"zvolte raději typ s nižšími schopnostmi."

#: ../lib/Xconfig/monitor.pm:148
#, c-format
msgid "Horizontal refresh rate"
msgstr "Horizontální (řádková) synchronizace"

#: ../lib/Xconfig/monitor.pm:149
#, c-format
msgid "Vertical refresh rate"
msgstr "Vertikální (obrazovková) synchronizace"

#: ../lib/Xconfig/plugins.pm:219
#, c-format
msgid "Choose plugins"
msgstr "Vyberte zásuvné moduly"

#: ../lib/Xconfig/resolution_and_depth.pm:10
#, c-format
msgid "256 colors (8 bits)"
msgstr "256 barev (8 bitů)"

#: ../lib/Xconfig/resolution_and_depth.pm:11
#, c-format
msgid "32 thousand colors (15 bits)"
msgstr "32 tisíc barev (15 bitů)"

#: ../lib/Xconfig/resolution_and_depth.pm:12
#, c-format
msgid "65 thousand colors (16 bits)"
msgstr "65 tisíc barev (16 bitů)"

#: ../lib/Xconfig/resolution_and_depth.pm:13
#, c-format
msgid "16 million colors (24 bits)"
msgstr "16 miliónů barev (24 bitů)"

#: ../lib/Xconfig/resolution_and_depth.pm:72
#: ../lib/Xconfig/resolution_and_depth.pm:311 ../lib/mouse.pm:35
#, c-format
msgid "Automatic"
msgstr "Automaticky"

#: ../lib/Xconfig/resolution_and_depth.pm:129
#, c-format
msgid "Resolutions"
msgstr "Rozlišení"

#: ../lib/Xconfig/resolution_and_depth.pm:343 ../lib/mouse.pm:187
#, c-format
msgid "Other"
msgstr "Další"

#: ../lib/Xconfig/resolution_and_depth.pm:397
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "Vyberte si rozlišení a barevnou hloubku"

#: ../lib/Xconfig/resolution_and_depth.pm:398
#, c-format
msgid "Graphics card: %s"
msgstr "Grafická karta: %s"

#: ../lib/Xconfig/resolution_and_depth.pm:412
#, c-format
msgid "Ok"
msgstr "Ok"

#: ../lib/Xconfig/resolution_and_depth.pm:412
#, c-format
msgid "Cancel"
msgstr "Zrušit"

#: ../lib/Xconfig/resolution_and_depth.pm:412
#, c-format
msgid "Help"
msgstr "Nápověda"

#: ../lib/Xconfig/test.pm:30
#, c-format
msgid "Test of the configuration"
msgstr "Vyzkoušet nastavení"

#: ../lib/Xconfig/test.pm:31
#, c-format
msgid "Do you want to test the configuration?"
msgstr "Chcete si vyzkoušet nastavení?"

#: ../lib/Xconfig/test.pm:31
#, c-format
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Varování: test na této grafické kartě může způsobit zatuhnutí počítače"

#: ../lib/Xconfig/test.pm:65
#, c-format
msgid ""
"An error occurred:\n"
"%s\n"
"Try to change some parameters"
msgstr ""
"Vyskytla se chyba:\n"
"%s\n"
"Zkuste změnit některé parametry"

#: ../lib/Xconfig/test.pm:126
#, c-format
msgid "Leaving in %d seconds"
msgstr "Test skončí za %d sekund"

#: ../lib/Xconfig/test.pm:126
#, c-format
msgid "Is this the correct setting?"
msgstr "Je toto správné nastavení?"

#: ../lib/Xconfig/various.pm:26
#, c-format
msgid "3D hardware acceleration: %s\n"
msgstr "Hardwarová 3D akcelerace: %s\n"

#: ../lib/Xconfig/various.pm:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Rozložení klávesnice: %s\n"

#: ../lib/Xconfig/various.pm:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Typ myši: %s\n"

#: ../lib/Xconfig/various.pm:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"

#: ../lib/Xconfig/various.pm:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontální frekvence monitoru: %s\n"

#: ../lib/Xconfig/various.pm:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikální frekvence monitoru: %s\n"

#: ../lib/Xconfig/various.pm:34
#, c-format
msgid "Graphics card: %s\n"
msgstr "Grafická karta: %s\n"

#: ../lib/Xconfig/various.pm:35
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Paměť na gr. kartě: %s kB\n"

#: ../lib/Xconfig/various.pm:37
#, c-format
msgid "Color depth: %s\n"
msgstr "Barevná hloubka: %s\n"

#: ../lib/Xconfig/various.pm:38
#, c-format
msgid "Resolution: %s\n"
msgstr "Rozlišení: %s\n"

#: ../lib/Xconfig/various.pm:40
#, c-format
msgid "Xorg driver: %s\n"
msgstr "Xorg ovladač: %s\n"

#: ../lib/Xconfig/various.pm:204
#, c-format
msgid "Xorg configuration"
msgstr "Nastavení Xorg"

#: ../lib/Xconfig/various.pm:205
#, c-format
msgid "Graphic card options"
msgstr "Volby grafické karty"

#: ../lib/Xconfig/various.pm:207
#, c-format
msgid "3D hardware acceleration"
msgstr "3D hardwarová akcelerace"

#: ../lib/Xconfig/various.pm:209
#, c-format
msgid "Enable Translucency (Composite extension)"
msgstr "Povolit průsvitnost (rozšíření Composite)"

#: ../lib/Xconfig/various.pm:212
#, c-format
msgid "Use hardware accelerated mouse pointer"
msgstr "Použít hardwarově urychlený ukazatel myši"

#: ../lib/Xconfig/various.pm:215
#, c-format
msgid "Enable RENDER Acceleration (this may cause bugs displaying text)"
msgstr "Povolit akceleraci RENDER (může způsobit chyby při zobrazování textu)"

#: ../lib/Xconfig/various.pm:219
#, c-format
msgid "Enable duplicate display on the external monitor"
msgstr "Povolit dvojí zobrazení na externím monitoru"

#: ../lib/Xconfig/various.pm:220
#, c-format
msgid "Enable duplicate display on the second display"
msgstr "Povolit dvojí zobrazení na druhém displeji"

#: ../lib/Xconfig/various.pm:223
#, c-format
msgid "Enable BIOS hotkey for external monitor switching"
msgstr "Povolit přepínání výstupu na externí monitor klávesami BIOSu"

#: ../lib/Xconfig/various.pm:226
#, c-format
msgid "Use EXA instead of XAA (better performance for Render and Composite)"
msgstr "Použít EXA místo XAA (lepší výkon rozšíření Render a Composite)"

#: ../lib/Xconfig/various.pm:228
#, c-format
msgid "Graphical interface at startup"
msgstr "Grafické rozhraní při spuštění"

#: ../lib/Xconfig/various.pm:229
#, c-format
msgid "Automatically start the graphical interface (Xorg) upon booting"
msgstr "Automaticky spustit grafické rozhraní (Xorg) při startu"

#: ../lib/Xconfig/various.pm:241
#, c-format
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
"\n"
"For this you have to plug your graphic card to your TV before booting your "
"computer.\n"
"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
"Do you have this feature?"
msgstr ""
"Vaše grafická karta zřejmě disponuje konektorem pro TV-OUT.\n"
"Tento konektor může být zprovozněn použitím tzv. frame bufferu.\n"
"\n"
"Aby to bylo možné, budete muset napojit svou grafickou kartu na televizní "
"přijímač, a to ještě než zapnete váš počítač.\n"
"Poté vyberte ve vašem zavaděči položku \"TV out\".\n"
"\n"
"Má vaše karta tuto vlastnost?"

#: ../lib/Xconfig/various.pm:253
#, c-format
msgid "What norm is your TV using?"
msgstr "Jakou normu váš televizor používá?"

#: ../lib/Xconfig/xfree.pm:791
#, c-format
msgid ""
"_:weird aspect ratio\n"
"other"
msgstr "jiné"

#: ../lib/keyboard.pm:183 ../lib/keyboard.pm:215
#, c-format
msgid ""
"_: keyboard\n"
"Czech (QWERTZ)"
msgstr "České (QWERTZ)"

#: ../lib/keyboard.pm:184 ../lib/keyboard.pm:217
#, c-format
msgid ""
"_: keyboard\n"
"German"
msgstr "Německé"

#: ../lib/keyboard.pm:185
#, c-format
msgid ""
"_: keyboard\n"
"Dvorak"
msgstr "Dvořák"

#: ../lib/keyboard.pm:186 ../lib/keyboard.pm:229
#, c-format
msgid ""
"_: keyboard\n"
"Spanish"
msgstr "Španělské"

#: ../lib/keyboard.pm:187 ../lib/keyboard.pm:230
#, c-format
msgid ""
"_: keyboard\n"
"Finnish"
msgstr "Finské"

#: ../lib/keyboard.pm:188 ../lib/keyboard.pm:232
#, c-format
msgid ""
"_: keyboard\n"
"French"
msgstr "Francouzské"

#: ../lib/keyboard.pm:189 ../lib/keyboard.pm:233
#, c-format
msgid "UK keyboard"
msgstr "UK-Britské"

#: ../lib/keyboard.pm:190 ../lib/keyboard.pm:276
#, c-format
msgid ""
"_: keyboard\n"
"Norwegian"
msgstr "Norské"

#: ../lib/keyboard.pm:191
#, c-format
msgid ""
"_: keyboard\n"
"Polish"
msgstr "Polské"

#: ../lib/keyboard.pm:192 ../lib/keyboard.pm:286
#, c-format
msgid ""
"_: keyboard\n"
"Russian"
msgstr "Ruské"

#: ../lib/keyboard.pm:193 ../lib/keyboard.pm:288
#, c-format
msgid ""
"_: keyboard\n"
"Swedish"
msgstr "Švédské"

#: ../lib/keyboard.pm:194 ../lib/keyboard.pm:323
#, c-format
msgid "US keyboard"
msgstr "US-Americké"

#: ../lib/keyboard.pm:196
#, c-format
msgid ""
"_: keyboard\n"
"Albanian"
msgstr "Albánské"

#: ../lib/keyboard.pm:197
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (old)"
msgstr "Arménské (staré)"

#: ../lib/keyboard.pm:198
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (typewriter)"
msgstr "Arménské (psací stroj)"

#: ../lib/keyboard.pm:199
#, c-format
msgid ""
"_: keyboard\n"
"Armenian (phonetic)"
msgstr "Arménské (foneticky)"

#: ../lib/keyboard.pm:200
#, c-format
msgid ""
"_: keyboard\n"
"Arabic"
msgstr "Arabské"

#: ../lib/keyboard.pm:201
#, c-format
msgid ""
"_: keyboard\n"
"Azerbaidjani (latin)"
msgstr "Ázerbajdžánské (latinka)"