summaryrefslogtreecommitdiffstats
path: root/perl-install/resize_fat/Makefile
blob: 9078b361a215cf0df059ed52b1a669fa4dd2c420 (plain)
1
2
3
4
5
6
7
8
9
10
.PHONY: clean

c_rewritten: %: %.xs
	test -e Makefile_c || perl Makefile.PL
	$(MAKE) -f Makefile_c LD_RUN_PATH= || $(MAKE) -f Makefile_c LD_RUN_PATH=
	rm -f ../auto/resize_fat ; ln -s ../resize_fat/blib/arch/auto ../auto/resize_fat

clean:
	test ! -e Makefile_c || $(MAKE) -f Makefile_c clean
	rm -f *~ *.o
'#n148'>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 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 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
# translation of drakconf-uz.po to Uzbek
# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
# Copyright (C) 2003 MandrakeSoft.
# Mashrab Kuvatov <kmashrab@uni-bremen.de>, 2003, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: drakconf-uz\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-04-19 13:59+0200\n"
"PO-Revision-Date: 2004-06-13 19:43+0200\n"
"Last-Translator: Mashrab Kuvatov <kmashrab@uni-bremen.de>\n"
"Language-Team: Uzbek <kmashrab@uni-bremen.de>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"

#: ../contributors.pl:11
#, c-format
msgid "Packagers"
msgstr "Paket yaratuvchilar"

#: ../contributors.pl:12 ../contributors.pl:32
#, c-format
msgid "Per Oyvind Karlsen"
msgstr "Per Oyvind Karlsn (Per Oyvind Karlsen)"

#: ../contributors.pl:12
#, c-format
msgid ""
"massive packages rebuilding and cleaning, Norwegian Bokmål (nb) translation, "
"i18n work (nb and nn), games, sparc port"
msgstr ""

#: ../contributors.pl:13
#, c-format
msgid "Guillaume Rousse"
msgstr "Giyom Rus (Guillaume Rousse)"

#: ../contributors.pl:13
#, c-format
msgid "cowsay introduction"
msgstr ""

#: ../contributors.pl:14
#, c-format
msgid "Olivier Thauvin"
msgstr "Olivie Tovan (Olivier Thauvin)"

#: ../contributors.pl:14
#, c-format
msgid "figlet introduction, Distriblint (checking rpm in the distro)"
msgstr ""

#: ../contributors.pl:15
#, c-format
msgid "Marcel Pol"
msgstr "Marsel Pol (Marcel Pol)"

#: ../contributors.pl:15
#, c-format
msgid "mono introduction, updated abiword"
msgstr ""

#: ../contributors.pl:16
#, c-format
msgid "Ben Reser"
msgstr "Ben Reser (Ben Reser)"

#: ../contributors.pl:16
#, c-format
msgid ""
"updated nc with debian patches, fixed some perl packages, dnotify startup "
"script, urpmc, hddtemp, wipe, etc..."
msgstr ""

#: ../contributors.pl:17 ../contributors.pl:34
#, c-format
msgid "Thomas Backlund"
msgstr "Tomas Baklund (Thomas Backlund)"

#: ../contributors.pl:17
#, c-format
msgid ""
"\"deep and broad\" kernel work (many new patches before integration in "
"official kernel)"
msgstr ""

#: ../contributors.pl:18
#, c-format
msgid "Svetoslav Slavtchev"
msgstr "Svetoslav Slavtchev (Svetoslav Slavtchev)"

#: ../contributors.pl:18
#, c-format
msgid "kernel work (audio- and video-related patches)"
msgstr "kernel ustida ishlar (audio va videoga oid pachlar)"

#: ../contributors.pl:19
#, c-format
msgid "Danny Tholen"
msgstr "Danni Tolen (Danny Tholen)"

#: ../contributors.pl:19
#, c-format
msgid "multimedia kernel"
msgstr "multimedia kernel"

#: ../contributors.pl:20
#, c-format
msgid "Buchan Milne"
msgstr "Buxan Milne (Buchan Milne)"

#: ../contributors.pl:20
#, c-format
msgid ""
"Samba 3.0 (prerelease) that co-exists with Samba 2.2.x, Samba-2.2.x, GIS "
"software (grass, mapserver), cursor_themes collection, misc server-side "
"contributions"
msgstr ""

#: ../contributors.pl:21
#, c-format
msgid "Goetz Waschk"
msgstr "Goets Vashk (Goetz Waschk)"

#: ../contributors.pl:21
#, c-format
msgid ""
"many multimedia packages (xine,totem, gstreamer, mplayer, vlc, vcdimager), "
"gnome-python, rox desktop"
msgstr ""
"bir qancha multimedia paketlari (xine,totem, gstreamer, mplayer, vlc, "
"vcdimager), gnome-python, rox ish stoli"

#: ../contributors.pl:22
#, c-format
msgid "Austin Acton"
msgstr "Ostin Akton (Austin Acton)"

#: ../contributors.pl:22
#, c-format
msgid ""
"audio/video/MIDI apps, scientific apps, audio/video production howtos, "
"bluetooth, pyqt & related"
msgstr ""

#: ../contributors.pl:23
#, c-format
msgid "Spencer Anderson"
msgstr "Spenser Anderson (Spencer Anderson)"

#: ../contributors.pl:23
#, c-format
msgid "ATI/gatos/DRM stuff, opengroupware.org"
msgstr "ATI/gatos/DRM'ga oid ishlar, opengroupware.org"

#: ../contributors.pl:24
#, c-format
msgid "Andrey Borzenkov"
msgstr "Andrey Borzenkov (Andrey Borzenkov)"

#: ../contributors.pl:24
#, c-format
msgid "supermount-ng and other kernel work"
msgstr "super-ulash va kernelga oid ishlar"

#: ../contributors.pl:25
#, c-format
msgid "Oden Eriksson"
msgstr "Oden Erikson (Oden Eriksson)"

#: ../contributors.pl:25
#, c-format
msgid "most web-based packages and many security-related packages"
msgstr ""

#: ../contributors.pl:26
#, c-format
msgid "Stefan VanDer Eijk"
msgstr "Shtefan VanDer Eyk (Stefan VanDer Eijk)"

#: ../contributors.pl:26
#, c-format
msgid "slbd distro checking, devel dependancies"
msgstr ""

#: ../contributors.pl:27
#, c-format
msgid "David Walser"
msgstr "David Valser (David Walser)"

#: ../contributors.pl:27
#, c-format
msgid "rpmsync script, foolproof MIDI playback, tweaked libao"
msgstr ""

#: ../contributors.pl:28
#, c-format
msgid "Andi Payn"
msgstr "Andi Payn (Andi Payn)"

#: ../contributors.pl:28
#, c-format
msgid "many extra gnome applets and python modules"
msgstr "GNOME uchun ko'plab qo'shimcha appletlar va Python modullari"

#: ../contributors.pl:29 ../contributors.pl:33
#, c-format
msgid "Tibor Pittich"
msgstr "Tibor Pitich (Tibor Pittich)"

#: ../contributors.pl:29
#, c-format
msgid ""
"leader of the mdk sk-i18n team, contributed several packages (mozilla-"
"firebird, afbackup, silc-client, psi, amavis-ng, lukemftp, cacti, "
"scponly...), several years of using cooker and bug hunting, etc..."
msgstr ""

#: ../contributors.pl:30
#, c-format
msgid "Pascal Terjan"
msgstr "Paskal Teryan (Pascal Terjan)"

#: ../contributors.pl:30
#, c-format
msgid "some ruby stuff, various packages, ..."
msgstr ""

#: ../contributors.pl:31
#, c-format
msgid "Translators"
msgstr "Tarjimonlar"

#: ../contributors.pl:32
#, c-format
msgid "Norwegian Bokmål (nb) translator and Coordinator, i18n work."
msgstr "Norvegchaga (nb) tarjimon va koordinator"

#: ../contributors.pl:33
#, c-format
msgid "leader of the mdk sk-i18n team."
msgstr "Slovenchaga tarjimon va koordinator"

#: ../contributors.pl:34
#, c-format
msgid "Finnish translator and Coordinator"
msgstr "Finchaga tarjimon va koordinator"

#: ../contributors.pl:35
#, c-format
msgid "Reinout Van Schouwen"
msgstr "Ryanout Van Shouven (Reinout Van Schouwen)"

#: ../contributors.pl:35
#, c-format
msgid "Dutch translator and Coordinator"
msgstr "Gollandachaga tarjimon va koordinator"

#: ../contributors.pl:36
#, c-format
msgid "Testers"
msgstr "Sinovchilar"

#: ../contributors.pl:37
#, c-format
msgid ""
"And many unnamed and unknown beta testers and bug reporters that helped make "
"sure it all worked right. "
msgstr ""

#: ../control-center:88 ../control-center:95 ../control-center:1110
#, c-format
msgid "Mandrakelinux Control Center"
msgstr "Mandrakelinux boshqaruv markazi"

#: ../control-center:98 ../control-center:714
#, c-format
msgid "Loading... Please wait"
msgstr "Yuklanmoqda... Iltimos kutib turing"

#: ../control-center:122
#, c-format
msgid "Auto Install floppy"
msgstr "Avto-o'rnatish disketi"

#: ../control-center:123
#, c-format
msgid "Autologin"
msgstr "Avto-kirish"

#: ../control-center:124
#, c-format
msgid "Backups"
msgstr ""

#: ../control-center:125 ../drakxconf:32
#, c-format
msgid "Boot loader"
msgstr "Tizimni yuklovchi"

#: ../control-center:126
#, c-format
msgid "Boot theme"
msgstr "Yuklash mavzusi"

#: ../control-center:127
#, c-format
msgid "Boot floppy"
msgstr "Tizimni yuklash disketi"

#: ../control-center:128 ../drakxconf:34
#, c-format
msgid "Internet connection sharing"
msgstr "Internet bilan bo'lishish"

#: ../control-center:129
#, c-format
msgid "New connection"
msgstr "Yangi aloqa"

#: ../control-center:130
#, c-format
msgid "Manage connections"
msgstr "Aloqalarni boshqarish"

#: ../control-center:131
#, c-format
msgid "Monitor connections"
msgstr "Aloqalarni nazorat qilish"

#: ../control-center:132
#, c-format
msgid "Internet access"
msgstr "Internetga ulanish"

#: ../control-center:134
#, c-format
msgid "Console"
msgstr "Konsol"

#: ../control-center:135
#, c-format
msgid "Date and time"
msgstr "Sana va vaqt"

#: ../control-center:136
#, c-format
msgid "Display manager"
msgstr "Displey boshqaruvchisi"

#: ../control-center:137
#, c-format
msgid "Fax"
msgstr "Faks"

#: ../control-center:138 ../drakxconf:31
#, c-format
msgid "Firewall"
msgstr "Fayervol"

#: ../control-center:139
#, c-format
msgid "Fonts"
msgstr "Shriftlar"

#: ../control-center:140
#, c-format
msgid "Graphical server"
msgstr "Grafik serveri"

#: ../control-center:141 ../drakxconf:35
#, c-format
msgid "Partitions"
msgstr "Diskning qismlari"

#: ../control-center:142 ../control-center:183
#, c-format
msgid "Hardware"
msgstr "Asbob-uskunalar"

#: ../control-center:143
#, c-format
msgid "Install"
msgstr "O'rnatish"

#: ../control-center:144 ../drakxconf:26
#, c-format
msgid "Keyboard"
msgstr "Tugmatag"

#: ../control-center:145
#, c-format
msgid "Kolab"
msgstr "Kolab"

#: ../control-center:146
#, c-format
msgid "Logs"
msgstr "Loglar"

#: ../control-center:147
#, c-format
msgid "Manage computer group"
msgstr "Kompyuterlar guruhini boshqarish"

#: ../control-center:148
#, c-format
msgid "Updates"
msgstr "Yangilanishlar"

#: ../control-center:149
#, c-format
msgid "Menus"
msgstr "Menyular"

#: ../control-center:150
#, c-format
msgid "Monitor"
msgstr "Monitor"

#: ../control-center:151 ../drakxconf:27
#, c-format
msgid "Mouse"
msgstr "Sichqoncha"

#: ../control-center:152
#, c-format
msgid "NFS mount points"
msgstr "NFS ulash nuqtalari"

#: ../control-center:153
#, c-format
msgid "Local disk sharing"
msgstr "Lokal disk bilan bo'lishish"

#: ../control-center:154
#, c-format
msgid "Printers"
msgstr "Printerlar"

#: ../control-center:155
#, c-format
msgid "Scheduled tasks"
msgstr "Rejalangan vazifalar"

#: ../control-center:156
#, c-format
msgid "Proxy"
msgstr "Proksi"

#: ../control-center:157
#, c-format
msgid "Remove a connection"
msgstr "Aloqani olib tashlash"

#: ../control-center:158
#, c-format
msgid "Remove"
msgstr "Olib tashlash"

#: ../control-center:159
#, c-format
msgid "Screen resolution"
msgstr "Ekranning o'lchami"

#: ../control-center:160
#, c-format
msgid "Samba mount points"
msgstr "Samba ulash nuqtalari"

#: ../control-center:161
#, c-format
msgid "Scanners"
msgstr "Skannerlar"

#: ../control-center:162
#, c-format
msgid "Level and checks"