summaryrefslogtreecommitdiffstats
path: root/perl-install/resize_fat
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/resize_fat')
0 files changed, 0 insertions, 0 deletions
5'>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 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 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
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"

# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
msgid ""
"The first step is to choose your preferred language.\n"
"\n"
"Your choice of preferred language will affect the installer, the\n"
"documentation, and the system in general. First select the region you're\n"
"located in, then the language you speak.\n"
"\n"
"Clicking on the \"%s\" button will allow you to select other languages to\n"
"be installed on your workstation, thereby installing the language-specific\n"
"files for system documentation and applications. For example, if Spanish\n"
"users are to use your machine, select English as the default language in\n"
"the tree view and \"%s\" in the Advanced section.\n"
"\n"
"About UTF-8 (unicode) support: Unicode is a new character encoding meant to\n"
"cover all existing languages. However full support for it in GNU/Linux is\n"
"still under development. For that reason, Mandrivalinux's use of UTF-8 will\n"
"depend on the user's choices:\n"
"\n"
" * If you choose a language with a strong legacy encoding (latin1\n"
"languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, most\n"
"iso-8859-2 languages), the legacy encoding will be used by default;\n"
"\n"
" * Other languages will use unicode by default;\n"
"\n"
" * If two or more languages are required, and those languages are not using\n"
"the same encoding, then unicode will be used for the whole system;\n"
"\n"
" * Finally, unicode can also be forced for use throughout the system at a\n"
"user's request by selecting the \"%s\" option independently of which\n"
"languages were been chosen.\n"
"\n"
"Note that you're not limited to choosing a single additional language. You\n"
"may choose several, or even install them all by selecting the \"%s\" box.\n"
"Selecting support for a language means translations, fonts, spell checkers,\n"
"etc. will also be installed for that language.\n"
"\n"
"To switch between the various languages installed on your system, you can\n"
"launch the \"localedrake\" command as \"root\" to change the language used\n"
"by the entire system. Running the command as a regular user will only\n"
"change the language settings for that particular user."
msgstr ""
"第一步是选择您首选的语言。\n"
"\n"
"您对首选语言的选择将影响安装程序、文档及系统的总体配置。请先选择您所在的地区,然后选择您讲的语言。\n"
"\n"
"\n"
"单击\"%s\"按钮以后,您可以选择要在您的工作站上安装哪些额外的语言,即为系统文档和应用程序安装特定语言的文件。例如,如果您的计算机要为繁体中文的用户提供服务,请在树视图中选择简体中文作为默认语言,然后在高级选项中选择\"%s\"。\n"
"\n"
"关于 UTF-8 (Unicode) 支持:Unicode 是一种新的字符编码,该编码可支持所有现存的语言。但是,在 GNU/Linux 下完全支持\n"
"Unicode,仍然在开发和完善中。由此原因,Mandrivalinux 会根据用户的选择是否使用 UTF-8:\n"
"\n"
" * 如果您所选的语言自身有强制性的编码(latin1 语言、俄语、日语、中文、朝鲜语、泰语、希腊语、土耳其语及大多数 iso-8859-2\n"
"语言),则会默认使用强制编码;\n"
"\n"
" * 其它语言默认会使用 Unicode;\n"
"\n"
" * 如果需要两种或更多种语言,而这两种语言所使用的编码并不相同,则整个系统都会使用 Unicode;\n"
"\n"
" * 最后,如果要强制系统使用 Unicode,而不管选中的是哪个或哪些语言,则应选中选项\"%s\"。\n"
"\n"
"\n"
"请注意,系统没有限制您只能选择一种额外的语言。您可以选择多种语言,甚至选择\"%s\"框表明您想要安装全部语言。选择支持某种语言,意味着同时安装该语言的翻译、字体、拼写检查程序等等。\n"
"\n"
"要在系统中所安装的不同语言之间切换,请以 \"root\" 身份执行 \"/usr/sbin/localedrake\"\n"
"命令,这样可以更改整个系统所用的语言。以普通用户执行该命令,只会更改特定用户的语言设置。"

# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
msgid ""
"\"%s\": if a sound card is detected on your system, it'll be displayed\n"
"here. If you notice the sound card isn't the one actually present on your\n"
"system, you can click on the button and choose a different driver."
msgstr ""
"\"%s\":如果在您的系统中检测到了声卡,则会在此处显示。如果您发现在此显示的声卡与您系统中实际安装的声卡并不相同,您可以单击该按钮选择不同的驱动程序。"

# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
msgid ""
"You now need to decide where you want to install the Mandrivalinux\n"
"operating system on your hard drive. If your hard drive is empty or if an\n"
"existing operating system is using all the available space you will have to\n"
"partition the drive. Basically, partitioning a hard drive means to\n"
"logically divide it to create the space needed to install your new\n"
"Mandrivalinux system.\n"
"\n"
"Because the process of partitioning a hard drive is usually irreversible\n"
"and can lead to data losses, partitioning can be intimidating and stressful\n"
"for the inexperienced user. Fortunately, DrakX includes a wizard which\n"
"simplifies this process. Before continuing with this step, read through the\n"
"rest of this section and above all, take your time.\n"
"\n"
"Depending on the configuration of your hard drive, several options are\n"
"available:\n"
"\n"
" * \"%s\". This option will perform an automatic partitioning of your blank\n"
"drive(s). If you use this option there will be no further prompts.\n"
"\n"
" * \"%s\". The wizard has detected one or more existing Linux partitions on\n"
"your hard drive. If you want to use them, choose this option. You will then\n"
"be asked to choose the mount points associated with each of the partitions.\n"
"The legacy mount points are selected by default, and for the most part it's\n"
"a good idea to keep them.\n"
"\n"
" * \"%s\". If Microsoft Windows is installed on your hard drive and takes\n"
"all the space available on it, you will have to create free space for\n"
"GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
"data (see ``Erase entire disk'' solution) or resize your Microsoft Windows\n"
"FAT or NTFS partition. Resizing can be performed without the loss of any\n"
"data, provided you've previously defragmented the Windows partition.\n"
"Backing up your data is strongly recommended. Using this option is\n"
"recommended if you want to use both Mandrivalinux and Microsoft Windows on\n"
"the same computer.\n"
"\n"
"   Before choosing this option, please understand that after this\n"
"procedure, the size of your Microsoft Windows partition will be smaller\n"
"than when you started. You'll have less free space under Microsoft Windows\n"
"to store your data or to install new software.\n"
"\n"
" * \"%s\". If you want to delete all data and all partitions present on\n"
"your hard drive and replace them with your new Mandrivalinux system, choose\n"
"this option. Be careful, because you won't be able to undo this operation\n"
"after you confirm.\n"
"\n"
"   !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
" * \"%s\". This option appears when the hard drive is entirely taken by\n"
"Microsoft Windows. Choosing this option will simply erase everything on the\n"
"drive and begin fresh, partitioning everything from scratch.\n"
"\n"
"   !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"%s\". Choose this option if you want to manually partition your hard\n"
"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
"easily lose all your data. That's why this option is really only\n"
"recommended if you have done something like this before and have some\n"
"experience. For more instructions on how to use the DiskDrake utility,\n"
"refer to the ``Managing Your Partitions'' section in the ``Starter Guide''."
msgstr ""
"在这一步里,您需要决定您想要将 Mandrivalinux\n"
"操作系统安装到硬盘的何处。如果您的硬盘完全是空的,或者已有操作系统使用了所有的空间,您就必须要对硬盘进行分区。粗略的说,对硬盘进行分区就是将其划分成几个逻辑上不同的部分,以便创建安装您新的\n"
"Mandrivalinux 系统所需的空间。\n"
"\n"
"由于对硬盘进行分区通常是不可恢复的,并且可能导致数据丢失,所以对于没有经验的用户来说,分区是十分危险的操作。所幸的是,DrakX\n"
"所包含的向导能够显著简化这一过程。在继续这一步骤之前,请花点时间仔细阅读本节及以上的所有内容。\n"
"\n"
"根据您的硬盘配置不同,您可从以下选项中加以选择:\n"
"\n"
" * \"%s\"。此选项将对您的空驱动器执行自动分区。如果您使用此选项,则不会有任何后续的提示。\n"
"\n"
" * \"%s\"。向导检测到了硬盘上有一个或多个已有的 Linux\n"
"分区。如果您想要使用这些分区,请选择此选项。稍后,安装程序会让您选择与每个分区关联的挂载点。先前的挂载点默认已经选中了,而保留这些选项是个不错的主意。\n"
"\n"
" * \"%s\"。如果在您的硬盘上安装了 Microsoft Windows,而该操作系统占用了所有的空间,您就需要为 GNU/Linux\n"
"创建剩余空间。要完成这一操作,您可以删除您的 Microsoft Windows 分区和数据(参看``删除整个磁盘''方案),或者更改\n"
"Microsoft Windows FAT 或 NTFS 分区的大小。更改分区大小通常不会造成任何数据丢失,但您必须事先对 Windows\n"
"分区进行了磁盘碎片整理。我们强烈推荐您事先备份您的数据。如果您想要在同一台计算机上使用 Mandrivalinux 和 Microsoft\n"
"Windows,则推荐使用此选项。\n"
"\n"
"   注意,在执行这一过程之后,您原有的 Microsoft Windows 分区将会比先前小一些。而您在 Microsoft Windows\n"
"下可用来存储数据或安装新软件的剩余空间也会变少。\n"
"\n"
" * \"%s\"。如果您想要删除硬盘上的全部数据和全部分区,并将其替换为全新的 Mandrivalinux\n"
"系统,请选择此选项。请额外小心,因为在您确认之后,此操作无法撤销。\n"
"\n"
"   !! 如果您选择了此选项,您硬盘上的全部数据都将被删除。 !!\n"
"\n"
" * \"%s\"。当硬盘完全被 Microsoft Windows 占用时,会出现此选项。选择此选项将删除硬盘上的全部内容,然后从头开始进行分区。\n"
"\n"
"   !! 如果您选择了此选项,您硬盘上的全部数据都将被删除。 !!\n"
"\n"
" *\n"
"\"%s\"。如果您想要手动对您的硬盘进行分区,请选择此选项。请额外小心——该功能十分强大,但也很危险,您可能在不经意之间毁掉您的全部数据。这也正是为什么我们只对那些以前执行过类似操作并有些经验的用户才推荐此选项的原因。要获得关于如何使用\n"
"DiskDrake 工具的更多说明,请参阅``初学者指南''一书中的``管理您的分区''一节。"

# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
msgid ""
"Resolution\n"
"\n"
"   Here you can choose the resolutions and color depths available for your\n"
"graphics hardware. Choose the one which best suits your needs (you will be\n"
"able to make changes after the installation). A sample of the chosen\n"
"configuration is shown in the monitor picture."
msgstr ""
"分辨率\n"
"\n"
"   \n"
"您可以在此选择分辨率和颜色深度,但您的显示卡硬件要支持。请选择最适合您需要的选项(您在安装完成之后仍可进行修改)。所选配置的例子会显示在显示器上。"

# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
msgid ""
"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
"information on how to set up a new printer. The interface presented in our\n"
"manual is similar to the one used during installation."
msgstr ""
"\"%s\":单击\"%s\"按钮将打开打印机配置向导。请参看``初学者指南''中的相应章节,其中详细描述了如何设置新打印机。那里给出的界面与安装时所用的界面大体相同。"

# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
msgid ""
"GNU/Linux is a multi-user system which means each user can have his or her\n"
"own preferences, own files and so on. But unlike \"root\", who is the\n"
"system administrator, the users you add at this point won't be authorized\n"
"to change anything except their own files and their own configurations,\n"
"protecting the system from unintentional or malicious changes which could\n"
"impact on the system as a whole. You'll have to create at least one regular\n"
"user for yourself -- this is the account which you should use for routine,\n"
"day-to-day usage. Although it's very easy to log in as \"root\" to do\n"
"anything and everything, it may also be very dangerous! A very simple\n"
"mistake could mean that your system won't work any more. If you make a\n"
"serious mistake as a regular user, the worst that can happen is that you'll\n"
"lose some information, but you won't affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
"you type in this field and copy it to the \"%s\" one, which is the name\n"
"this user will enter to log onto the system. If you like, you may override\n"
"the default and change the user name. The next step is to enter a password.\n"
"From a security point of view, a non-privileged (regular) user password is\n"
"not as crucial as the \"root\" password, but that's no reason to neglect it\n"
"by making it blank or too simple: after all, your files could be the ones\n"
"at risk.\n"
"\n"
"Once you click on \"%s\", you can add other users. Add a user for each one\n"
"of your friends, your father, your sister, etc. Click \"%s\" when you're\n"
"finished adding users.\n"
"\n"
"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
"that user (bash by default).\n"
"\n"
"When you're finished adding users, you'll be asked to choose a user who\n"
"will be automatically logged into the system when the computer boots up. If\n"
"you're interested in that feature (and don't care much about local\n"
"security), choose the desired user and window manager, then click on\n"
"\"%s\". If you're not interested in this feature, uncheck the \"%s\" box."
msgstr ""
"GNU/Linux 是多用户系统,这意味着每个用户可拥有自己独立的首选项,以及自己的文件,等等。但是与系统管理员 \"root\"\n"
"不同,您在此处添加的用户所能做的更改将仅限于他们自己的文件及他们自己的配置,这可使系统免遭有意无意的破坏。您至少需要为您自己创建一个普通用户 --\n"
"这应该是您每天所使用的主要账户。尽管以 \"root\"\n"
"登录很容易,您可以不受任何限制地完成任何操作,但这很危险!非常低级的错误就可能让您的系统再也无法启动。如果您以普通用户的身份犯了非常危险的错误,最坏的情况也就是丢失某些信息,而不会影响整个系统。\n"
"\n"
"第一个输入框会要求您输入真实姓名。当然,这并不是必需的 -- 您当然可以输入你喜欢的任何内容。DrakX\n"
"将会使用您在此输入框中输入的第一个单词作为\"%s\"的初始值,即此用户登录系统所用的名称。如果您喜欢的话,您也可以不使用默认值,而换用您喜欢的用户名。下一步就是输入密码。从安全的角度来说,非特权(普通)用户密码并没有\n"
"\"root\" 密码那么需要保密,但是也没有理由忽视这个密码,而将其留空或设置得太简单:毕竟,您得为您自己的文件负责。\n"
"\n"
"您单击\"%s\"之后,您还可以为您的亲朋好友分别添加用户。当您添加完用户之后,请单击\"%s\"。\n"
"\n"
"单击\"%s\"按钮允许您更改该用户的默认 \"shell\"(默认为 bash)。\n"
"\n"
"\n"
"当您添加完用户之后,您可以从中选择一个用户,计算机启动后将自动以该用户的身份登录到系统。如果您对此特性感兴趣(也不考虑太多的本地安全性),请选择希望的用户和窗口管理器,然后单击\"%s\"。如果您对此特性不感兴趣,请不要选中\"%s\"框。"

# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
msgid ""
"Options\n"
"\n"
"   This steps allows you to choose whether you want your machine to\n"
"automatically switch to a graphical interface at boot. Obviously, you may\n"
"want to check \"%s\" if your machine is to act as a server, or if you were\n"
"not successful in getting the display configured."
msgstr ""
"选项\n"
"\n"
"   您可以在此选择是否想要在计算机启动的时候就切换到图形界面。显然,如果本机将用作服务器,或者您的显示配置还没有成功,您可能想要选择\"%s\"。"

# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/zh_cn/drakx-chapter.xml
msgid ""
"At this point, DrakX will allow you to choose the security level you desire\n"
"for your machine. As a rule of thumb, the security level should be set\n"
"higher if the machine is to contain crucial data, or if it's to be directly\n"
"exposed to the Internet. The trade-off that a higher security level is\n"
"generally obtained at the expense of ease of use.\n"
"\n"
"If you don't know what to choose, keep the default option. You'll be able\n"
"to change it later with the draksec tool, which is part of Mandrivalinux\n"
"Control Center.\n"
"\n"
"Fill the \"%s\" field with the e-mail address of the person responsible for\n"
"security. Security messages will be sent to that address."
msgstr ""
"在这里,DrakX 将允许您选择计算机要使用的安全级别。说的直白一点,如果计算机将包含关键数据,或者将直接暴露于 Internet\n"
"之下,则应该设置较高的安全级别。较高的安全级别通常以损失易用性作为代价。\n"
"\n"
"如果您不知道要选择什么,请保持默认选项。您可以稍后从 Mandrivalinux Control Center的一部分 draksec\n"
"来更改安全级别。\n"
"\n"
"请在\"%s\"域中填入要负责安全的人的电子邮件地址。安全信息将被发送到该地址。"

# DO NOT BOTHER TO MODIFY HERE, SEE: