#!/usr/bin/perl #- Mandrake cryptographic package hdlist and depslist generation tools. #- Copyright (C) 1999 MandrakeSoft (fpons@mandrakesoft.com) #- #- This program is free software; you can redistribute it and/or modify #- it under the terms of the GNU General Public License as published by #- the Free Software Foundation; either version 2, or (at your option) #- any later version. #- #- This program is distributed in the hope that it will be useful, #- but WITHOUT ANY WARRANTY; without even the implied warranty of #- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #- GNU General Public License for more details. #- #- You should have received a copy of the GNU General Public License #- along with this program; if not, write to the Free Software #- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #- usage: gencryptofiles #- build an hdlist and depslist file for crypto, need rpmtools also. my %resolver = ( '/bin/sh' => 'bash', '/bin/bash' => 'bash', '/usr/bin/perl' => 'perl', '/usr/bin/perl5' => 'perl', 'libBrokenLocale.so' => 'glibc', 'libICE.so' => 'XFree86-libs', 'libSM.so' => 'XFree86-libs', 'libX11.so' => 'XFree86-libs', 'libXext.so' => 'XFree86-libs', 'libXmu.so' => 'XFree86-libs', 'libXpm.so' => 'xpm', 'libXt.so' => 'XFree86-libs', 'libc.so.6' => 'glibc', 'libgdbm.so' => 'gdbm', 'libgpm.so' => 'gpm', 'libm.so' => 'glibc', 'libncurses.so' => 'ncurses', 'libnsl.so' => 'glibc', 'libpam.so' => 'pam', 'libpthread.so' => 'glibc', 'libreadline.so' => 'readline', 'libstdc++-libc6.1-2.so' => 'libstdc++', 'libstdc++.so' => 'libstdc++-compat', 'libutil.so' => 'glibc', 'libz.so' => 'zlib', 'smtpdaemon' => 'postfix', ); sub gendepslist_crypto { my ($dir) = @_; my %depslist; #- get information about each rpm. local *DIR; opendir DIR, $dir or die "cannot open directory: $!\n"; while ($_ = readdir DIR) { my ($key) = /(.*)\..*\.rpm$/ or next; my ($name) = /(.*)-[^-]*-[^-]*-/; my $size = `rpm -qp --queryformat="%{SIZE}" $dir/$_`; my @filelist = split "\n", `rpm -qpl $dir/$_`; my @requires = split "\n", `rpm -qpR $dir/$_`; $depslist{$key} = { key => $key, size => $size, filelist => \@filelist, requires => \@requires, deps => [], }; foreach (@filelist) { $resolver{$_} = $name; m|.*/([^/]*)$| and $resolver{$1} = $name; } } close DIR; #- resolve the dependancies. foreach my $pkg (values %depslist) { foreach (@{$pkg->{requires}}) { $resolver{$_} and push(@{$pkg->{deps}}, $resolver{$_}), next; m|^([^\s\(]*)| and $resolver{$1} and push(@{$pkg->{deps}}, $resolver{$1}), next; m|^.*/([^/\s\(]*)| and $resolver{$1} and push(@{$pkg->{deps}}, $resolver{$1}), next; m|^([^\s\(]*\.so)| and $resolver{$1} and push(@{$pkg->{deps}}, $resolver{$1}), next; m|^.*/([^\s\(]*\.so)| and $resolver{$1} and push(@{$pkg->{deps}}, $resolver{$1}), next; m|^([\w-]*)(?:\s+.*)$| and push(@{$pkg->{deps}}, $1); #- last and default to package name. } } #- build depslist-crypto file. local *F; open F, ">$dir/depslist-crypto" or die "cannot open depslist-crypto file for writing: $!\n"; foreach (values %depslist) { my %deps; @deps{@{$_->{deps}}} = (); print F "$_->{key} $_->{size} ", join(" ", keys %deps), "\n"; } close F; } sub main { my ($dir) = @_; -d $dir or die "usage: gencryptofiles \n"; -x "/usr/bin/genhdlist_cz2" or die "I need rpmtools to work (ie /usr/bin/genhdlist_cz2)\n"; print `genhdlist_cz2 -o $dir/hdlist-crypto.cz2 $dir`; gendepslist_crypto($dir); } main(@ARGV); perl-install/share/po?h=V1_1_9_52mdk'>logtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2002-09-05 22:59:14 +0000
committerPablo Saratxaga <pablo@mandriva.com>2002-09-05 22:59:14 +0000
commitfa6c48f13fba27a81995a3145f45ffd4165b5624 (patch)
tree902283cb001d2e8c3e07f8f5f3ed96ae97a505f2 /perl-install/share/po
parent4cabeab4360291f5db4c6a3ef5a0a20922f6d862 (diff)
downloaddrakx-backup-do-not-use-fa6c48f13fba27a81995a3145f45ffd4165b5624.tar
drakx-backup-do-not-use-fa6c48f13fba27a81995a3145f45ffd4165b5624.tar.gz
drakx-backup-do-not-use-fa6c48f13fba27a81995a3145f45ffd4165b5624.tar.bz2
drakx-backup-do-not-use-fa6c48f13fba27a81995a3145f45ffd4165b5624.tar.xz
drakx-backup-do-not-use-fa6c48f13fba27a81995a3145f45ffd4165b5624.zip
updated po Slovak and Chinese files
Diffstat (limited to 'perl-install/share/po')
-rw-r--r--perl-install/share/po/zh_TW.po1313
1 files changed, 719 insertions, 594 deletions
diff --git a/perl-install/share/po/zh_TW.po b/perl-install/share/po/zh_TW.po
index 86b565709..3e8656aec 100644
--- a/perl-install/share/po/zh_TW.po
+++ b/perl-install/share/po/zh_TW.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-02 20:14+0200\n"
-"PO-Revision-Date: 2002-09-03 02:20+CST\n"
+"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"PO-Revision-Date: 2002-09-06 06:00+CST\n"
"Last-Translator: Kenduest Lee <kenduest@i18n.linux.org.tw>\n"
"Language-Team: Chinese <zh@li.org>\n"
"MIME-Version: 1.0\n"
@@ -186,13 +186,13 @@ msgstr "選項"
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3972 ../../standalone/drakbackup_.c:4067
-#: ../../standalone/drakbackup_.c:4086
+#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
+#: ../../standalone/drakbackup_.c:4084
msgid "Ok"
msgstr "確定"
#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:98 ../../printerdrake.pm_.c:3155
+#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
#: ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "結束"
@@ -293,19 +293,18 @@ msgid "Graphics card: %s"
msgstr "顯示卡: %s"
#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:338 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_interactive.pm_.c:560 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:105
-#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
-#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:158
-#: ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3926
-#: ../../standalone/drakbackup_.c:3959 ../../standalone/drakbackup_.c:3985
-#: ../../standalone/drakbackup_.c:4012 ../../standalone/drakbackup_.c:4039
-#: ../../standalone/drakbackup_.c:4099 ../../standalone/drakbackup_.c:4126
-#: ../../standalone/drakbackup_.c:4156 ../../standalone/drakbackup_.c:4182
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
+#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
+#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
+#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
+#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
@@ -500,15 +499,15 @@ msgstr "在啟動作業系統前先延遲的時間"
#: ../../any.pm_.c:170 ../../any.pm_.c:788
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3528 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "密碼"
#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1094
msgid "Password (again)"
msgstr "密碼確認"
@@ -544,12 +543,12 @@ msgstr "選項「限制指令行參數」在沒有設定密碼的情況下會失效"
#: ../../any.pm_.c:184 ../../any.pm_.c:764
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1088
msgid "Please try again"
msgstr "請再試一次"
#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1088
msgid "The passwords do not match"
msgstr "輸入的密碼不符合"
@@ -599,8 +598,8 @@ msgstr ""
"下面還有一些其他的選項,您可以選擇新增或\n"
"修改既有的選項。"
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1558
-#: ../../standalone/drakbackup_.c:1671 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
+#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "新增"
@@ -608,7 +607,7 @@ msgstr "新增"
#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2772
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
msgid "Done"
msgstr "完成"
@@ -620,7 +619,7 @@ msgstr "修改"
msgid "Which type of entry do you want to add?"
msgstr "您要新增哪一類的項目 ?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1705
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
msgid "Linux"
msgstr "Linux"
@@ -918,7 +917,7 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "您可以選擇在安裝完成以後使用其他的語言"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:692
+#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "所有"
@@ -1075,7 +1074,7 @@ msgid ""
msgstr "請選擇熱鍵,以便於快速的切換不同的鍵盤配置"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:375
+#: ../../bootloader.pm_.c:381
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1100,127 +1099,129 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:932
+#: ../../bootloader.pm_.c:938
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:935
+#: ../../bootloader.pm_.c:941
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:944
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:947
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:950
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:948
+#: ../../bootloader.pm_.c:954
msgid "not enough room in /boot"
msgstr "/boot 沒有足夠的空間"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1048
+#: ../../bootloader.pm_.c:1054
msgid "Desktop"
msgstr "桌面"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1050
+#: ../../bootloader.pm_.c:1056
msgid "Start Menu"
msgstr "開始功能表"
-#: ../../bootloader.pm_.c:1069
+#: ../../bootloader.pm_.c:1075
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "您不能把開機管理程式安裝在 %s 分割區上\n"
-#: ../../bootlook.pm_.c:45 ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
+#: ../../standalone/draksplash_.c:25
msgid "no help implemented yet.\n"
msgstr "尚未實作求助功能\n"
-#: ../../bootlook.pm_.c:61
+#: ../../bootlook.pm_.c:62
msgid "Boot Style Configuration"
msgstr "開機樣式組態設定"
-#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:62
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:62
#: ../../harddrake/ui.pm_.c:63 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/檔案 (_F)"
-#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/檔案/離開 (_Q)"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:63
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:63
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:90
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
msgstr "NewStyle Categorizing Monitor"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:92
msgid "NewStyle Monitor"
msgstr "NewStyle Monitor"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:93
msgid "Traditional Monitor"
msgstr "Traditional Monitor"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:94
msgid "Traditional Gtk+ Monitor"
msgstr "Traditional Gtk+ Monitor"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:95
msgid "Launch Aurora at boot time"
msgstr "開機時啟動 Aurora 圖形介面"
-#: ../../bootlook.pm_.c:97
+#: ../../bootlook.pm_.c:98
msgid "Lilo/grub mode"
msgstr "Lilo/grub 模式"
-#: ../../bootlook.pm_.c:97
+#: ../../bootlook.pm_.c:98
msgid "Yaboot mode"
msgstr "Yaboot 模式"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:148
msgid "Install themes"
msgstr "安裝佈景"
-#: ../../bootlook.pm_.c:144
+#: ../../bootlook.pm_.c:149
msgid "Display theme under console"
msgstr "在 console 顯示佈景"
-#: ../../bootlook.pm_.c:145
+#: ../../bootlook.pm_.c:150
msgid "Create new theme"
msgstr "建立新的佈景"
-#: ../../bootlook.pm_.c:169
-msgid "Can't create Bootsplash preview"
-msgstr "無法建立開機進度畫面御覽"
+#: ../../bootlook.pm_.c:193
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr "將 %s 檔案備份至 %s.old"
-#: ../../bootlook.pm_.c:169 ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:190
-#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:223 ../../bootlook.pm_.c:225
-#: ../../bootlook.pm_.c:235 ../../bootlook.pm_.c:244 ../../bootlook.pm_.c:251
+#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
@@ -1231,38 +1232,33 @@ msgstr "無法建立開機進度畫面御覽"
msgid "Error"
msgstr "錯誤"
-#: ../../bootlook.pm_.c:186
-#, c-format
-msgid "Backup %s to %s.old"
-msgstr "將 %s 檔案備份至 %s.old"
-
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:194
msgid "unable to backup lilo message"
msgstr "無法備份 lilo 訊息檔案"
-#: ../../bootlook.pm_.c:189
+#: ../../bootlook.pm_.c:196
#, c-format
msgid "Copy %s to %s"
msgstr "正在複製 %s 至 %s"
-#: ../../bootlook.pm_.c:190
+#: ../../bootlook.pm_.c:197
msgid "can't change lilo message"
msgstr "無法變更 lilo 訊息設定"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:200
msgid "Lilo message not found"
msgstr "lilo 訊息檔案遺失"
-#: ../../bootlook.pm_.c:223
+#: ../../bootlook.pm_.c:230
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "無法寫入 /etc/sysconfig/bootsplash。"
-#: ../../bootlook.pm_.c:223
+#: ../../bootlook.pm_.c:230
#, c-format
msgid "Write %s"
msgstr "寫入 %s"
-#: ../../bootlook.pm_.c:225
+#: ../../bootlook.pm_.c:232
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1270,17 +1266,17 @@ msgstr ""
"無法寫入 /etc/sysconfig/bootsplash\n"
"檔案找不到。"
-#: ../../bootlook.pm_.c:236
+#: ../../bootlook.pm_.c:243
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "無法執行 mkinitrd -f /boot/initrd-%s.img %s。"
-#: ../../bootlook.pm_.c:239
+#: ../../bootlook.pm_.c:246
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "執行 'kinird -f /boot/initrd-%s.img %s'。"
-#: ../../bootlook.pm_.c:245
+#: ../../bootlook.pm_.c:252
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1289,24 +1285,24 @@ msgstr ""
"請使用 root 身份在命令提示字元執行 \"lilo\" 程式,以便於完成 lilo 佈景的安"
"裝。"
-#: ../../bootlook.pm_.c:249
+#: ../../bootlook.pm_.c:256
msgid "Relaunch 'lilo'"
msgstr "執行執行 'lilo'"
-#: ../../bootlook.pm_.c:251 ../../standalone/draksplash_.c:161
+#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
msgid "Notice"
msgstr "注意"
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:259
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "lilo 與開機進度畫面的佈景檔案已經安裝成功"
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:259
msgid "Theme installation failed!"
msgstr "佈景安裝失敗"
-#: ../../bootlook.pm_.c:261
+#: ../../bootlook.pm_.c:268
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1315,21 +1311,21 @@ msgstr ""
"你目前是選用 %s 當作您目前的開機管理程式。\n"
"您可以點選設定來啟動設定精靈"
-#: ../../bootlook.pm_.c:263 ../../standalone/drakbackup_.c:2427
-#: ../../standalone/drakbackup_.c:2437 ../../standalone/drakbackup_.c:2447
-#: ../../standalone/drakbackup_.c:2455 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
+#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "設定"
-#: ../../bootlook.pm_.c:270
+#: ../../bootlook.pm_.c:277
msgid "Splash selection"
msgstr "畫面選取"
-#: ../../bootlook.pm_.c:273
+#: ../../bootlook.pm_.c:280
msgid "Themes"
msgstr "佈景"
-#: ../../bootlook.pm_.c:275
+#: ../../bootlook.pm_.c:282
msgid ""
"\n"
"Select a theme for\n"
@@ -1341,34 +1337,34 @@ msgstr ""
"請選擇 lilo 與開機載入畫面項目,\n"
"您可以分開選擇"
-#: ../../bootlook.pm_.c:278
+#: ../../bootlook.pm_.c:285
msgid "Lilo screen"
msgstr "Lilo 螢幕"
-#: ../../bootlook.pm_.c:283
+#: ../../bootlook.pm_.c:290
msgid "Bootsplash"
msgstr "開機圖片"
-#: ../../bootlook.pm_.c:318
+#: ../../bootlook.pm_.c:325
msgid "System mode"
msgstr "系統模式"
-#: ../../bootlook.pm_.c:320
+#: ../../bootlook.pm_.c:327
msgid "Launch the graphical environment when your system starts"
msgstr "開機時啟動 X Window 圖形作業環境"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:332
msgid "No, I don't want autologin"
msgstr "不,我不需要自動登入 (AutoLogin)"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:334
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "是的,我需要用這個 (使用者、桌面) 來自動登入"
-#: ../../bootlook.pm_.c:337 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4191
-#: ../../standalone/drakbackup_.c:4952 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
@@ -1378,7 +1374,7 @@ msgstr "是的,我需要用這個 (使用者、桌面) 來自動登入"
msgid "OK"
msgstr "確定"
-#: ../../bootlook.pm_.c:407
+#: ../../bootlook.pm_.c:414
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "無法開啟 /etc/inittab 檔案進行讀取: %s"
@@ -1510,13 +1506,13 @@ msgstr "URL 格式必須為 http:// 或是 https:// 類型"
#: ../../diskdrake/dav.pm_.c:105
msgid "Server: "
-msgstr "主機:"
+msgstr "主機: "
#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
-msgstr "掛載點:"
+msgstr "掛載點: "
#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
#, c-format
@@ -1605,7 +1601,7 @@ msgstr "Empty"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1754
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
msgid "Other"
msgstr "其他"
@@ -1819,7 +1815,7 @@ msgstr "檔案系統格式: "
#: ../../diskdrake/interactive.pm_.c:444
msgid "Preference: "
-msgstr "設定值:"
+msgstr "設定值: "
#: ../../diskdrake/interactive.pm_.c:469
msgid ""
@@ -1946,7 +1942,7 @@ msgstr "Loopback"
#: ../../diskdrake/interactive.pm_.c:814
msgid "Loopback file name: "
-msgstr "Loopback 檔案名稱:"
+msgstr "Loopback 檔案名稱: "
#: ../../diskdrake/interactive.pm_.c:819
msgid "Give a file name"
@@ -2092,7 +2088,7 @@ msgstr "該分割區 %s 目前為 %s"
#: ../../diskdrake/interactive.pm_.c:1090
#: ../../diskdrake/interactive.pm_.c:1149
msgid "Device: "
-msgstr "裝置:"
+msgstr "裝置: "
#: ../../diskdrake/interactive.pm_.c:1091
#, c-format
@@ -2103,7 +2099,7 @@ msgstr "DOS 底下的磁碟代號: %s (猜測值,僅供參考)\n"
#: ../../diskdrake/interactive.pm_.c:1103
#: ../../diskdrake/interactive.pm_.c:1168
msgid "Type: "
-msgstr "格式:"
+msgstr "格式: "
#: ../../diskdrake/interactive.pm_.c:1099
msgid "Name: "
@@ -2222,7 +2218,7 @@ msgstr "硬碟資訊: %s 磁柱, %s 讀寫頭, %s 磁區\n"
#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
-msgstr "資訊:"
+msgstr "資訊: "
#: ../../diskdrake/interactive.pm_.c:1154
#, c-format
@@ -2294,7 +2290,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr "請輸入你的使用者名稱、密碼以及網域名稱,以便於能夠連線存取。"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3527
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
msgid "Username"
msgstr "使用者帳號"
@@ -2547,14 +2543,12 @@ msgid "the vendor name of the device"
msgstr "裝置的廠商名稱"
#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
msgid "Alternative drivers"
-msgstr "A4 紙張列印測試頁"
+msgstr "另外可供選擇的驅動程式"
#: ../../harddrake/ui.pm_.c:39
-#, fuzzy
msgid "the list of alternative drivers for this sound card"
-msgstr "尚未有任何提供您使用的音效卡驅動程式 (%s)"
+msgstr "可供您的音效卡額外可選擇的驅動程式清單"
#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
@@ -2601,51 +2595,55 @@ msgstr ""
msgid "Author:"
msgstr "作者:"
-#: ../../harddrake/ui.pm_.c:86
+#: ../../harddrake/ui.pm_.c:84
msgid "Harddrake2 version "
msgstr "Harddrake2 版本 "
-#: ../../harddrake/ui.pm_.c:103
+#: ../../harddrake/ui.pm_.c:99
msgid "Detected hardware"
msgstr "已偵測的硬體"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:101
msgid "Information"
msgstr "資訊"
-#: ../../harddrake/ui.pm_.c:108
+#: ../../harddrake/ui.pm_.c:104
msgid "Configure module"
msgstr "設定模組"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:105
msgid "Run config tool"
msgstr "執行設定程式"
-#: ../../harddrake/ui.pm_.c:113
+#: ../../harddrake/ui.pm_.c:109
msgid "Detection in progress"
msgstr "正在偵測中"
-#: ../../harddrake/ui.pm_.c:113 ../../interactive.pm_.c:391
+#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
msgid "Please wait"
msgstr "請稍候"
-#: ../../harddrake/ui.pm_.c:156
-msgid "primary"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:156
-msgid "secondary"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:197
+#: ../../harddrake/ui.pm_.c:143
msgid "You can configure each parameter of the module here."
msgstr "您可以在這邊輸入該模組的相關參數。"
-#: ../../harddrake/ui.pm_.c:213
+#: ../../harddrake/ui.pm_.c:161
#, c-format
msgid "Running \"%s\" ..."
msgstr "執行 \"%s\" 中 ..."
+#: ../../harddrake/ui.pm_.c:176
+msgid "Probing $Ident class\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:198
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:198
+msgid "secondary"
+msgstr ""
+
#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
msgid "Auto-detect"
msgstr "自動偵測"
@@ -4556,15 +4554,15 @@ msgstr "安裝的方式"
msgid "Please choose one of the following classes of installation:"
msgstr "請從下列的選項裡面選取適合的安裝種類:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
msgid "Package Group Selection"
msgstr "依群組選取要安裝的套件"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:693
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
msgid "Individual package selection"
msgstr "選取單一套件"
-#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:617
+#: ../../install_steps_gtk.pm_.c:293 ../../install_steps_interactive.pm_.c:614
#, c-format
msgid "Total size: %d / %d MB"
msgstr "總共大小: %d / %d MB"
@@ -4636,7 +4634,7 @@ msgstr "顯示自動選取的套件"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4257
+#: ../../standalone/drakbackup_.c:4255
msgid "Install"
msgstr "安裝"
@@ -4656,7 +4654,7 @@ msgstr "最小安裝"
msgid "Choose the packages you want to install"
msgstr "選擇您想要安裝的套件"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
msgid "Installing"
msgstr "正在安裝"
@@ -4683,17 +4681,17 @@ msgid "Installing package %s"
msgstr "正在安裝 %s 套件"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:783
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "接受"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:783
msgid "Refuse"
msgstr "拒絕"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4708,16 +4706,16 @@ msgstr ""
"若是您並沒有這張安裝片,請點選取消略過這一片的安裝的動作。"
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:799
-#: ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:800
msgid "Go on anyway?"
msgstr "無論如何都要繼續嗎 ?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
msgid "There was an error ordering packages:"
msgstr "排列套件時發生錯誤:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:803
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
msgid "There was an error installing packages:"
msgstr "安裝套件時發生錯誤:"
@@ -4919,7 +4917,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "您確定不接受該版權的宣稱?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1023
+#: ../../install_steps_interactive.pm_.c:1020
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "鍵盤"
@@ -5099,35 +5097,35 @@ msgstr ""
"請選擇在載入或者是儲存所選擇的套件到磁片內。\n"
"該磁片格式就是自動安裝時所製作產生的磁片格式。"
-#: ../../install_steps_interactive.pm_.c:537
+#: ../../install_steps_interactive.pm_.c:536
msgid "Load from floppy"
msgstr "載入軟碟中的設定值"
-#: ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_interactive.pm_.c:536
+msgid "Save on floppy"
+msgstr "儲存設定到磁片"
+
+#: ../../install_steps_interactive.pm_.c:540
msgid "Loading from floppy"
msgstr "正在載入軟碟中的設定值"
-#: ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_interactive.pm_.c:540
msgid "Package selection"
msgstr "套件選取"
-#: ../../install_steps_interactive.pm_.c:544
+#: ../../install_steps_interactive.pm_.c:545
msgid "Insert a floppy containing package selection"
msgstr "請插入一張包含軟體選取清單紀錄的磁片"
-#: ../../install_steps_interactive.pm_.c:556
-msgid "Save on floppy"
-msgstr "儲存設定到磁片"
-
-#: ../../install_steps_interactive.pm_.c:630
+#: ../../install_steps_interactive.pm_.c:627
msgid "Selected size is larger than available space"
msgstr "所選取紀錄的項目超過可用的磁碟空間"
-#: ../../install_steps_interactive.pm_.c:644
+#: ../../install_steps_interactive.pm_.c:641
msgid "Type of install"
msgstr "安裝類型"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:642
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5135,19 +5133,19 @@ msgstr ""
"您並未選取任何套件群組\n"
"請選擇您所需要的最小安裝"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:645
msgid "With X"
msgstr "包含 X 環境"
-#: ../../install_steps_interactive.pm_.c:650
+#: ../../install_steps_interactive.pm_.c:647
msgid "With basic documentation (recommended!)"
msgstr "包含基本的說明文件 (建議)"
-#: ../../install_steps_interactive.pm_.c:651