[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

apt i18n patch



hi,

This is apt i18n patch, with the po file.

I just translate some chinese message.

before more translation work is done, I hope we
can figure out the whether this patch to the apt
is fine.

Thank you.

Yuan-Chen cheng

diff -urN old.apt-0.5.3/apt-inst/deb/dpkgdb.cc apt-0.5.3/apt-inst/deb/dpkgdb.cc
--- old.apt-0.5.3/apt-inst/deb/dpkgdb.cc	Tue Feb 20 15:03:17 2001
+++ apt-0.5.3/apt-inst/deb/dpkgdb.cc	Sat Aug 11 20:49:30 2001
@@ -24,6 +24,8 @@
 #include <apt-pkg/tagfile.h>
 #include <apt-pkg/strutl.h>
 
+#include <apti18n.h>
+
 #include <stdio.h>
 #include <errno.h>
 #include <sys/stat.h>
@@ -132,7 +134,7 @@
 {
    if (Cache != 0)
    {  
-      Progress.OverallProgress(1,1,1,"Reading Package Lists");      
+      Progress.OverallProgress(1,1,1,_("Reading Package Lists"));
       return true;
    }
    
@@ -198,7 +200,7 @@
 	 break;
       }
       
-      Progress.OverallProgress(Count,Total,1,"Reading File Listing");
+      Progress.OverallProgress(Count,Total,1,_("Reading File Listing"));
      
       // Open the list file
       snprintf(Name,sizeof(Name),"%s.list",I.Name());
@@ -379,7 +381,7 @@
       return _error->Error("The pkg cache must be initialize first");
    if (FList != 0)
    {
-      Progress.OverallProgress(1,1,1,"Reading File List");
+      Progress.OverallProgress(1,1,1,_("Reading File List"));
       return true;
    }
    
diff -urN old.apt-0.5.3/cmdline/apt-cache.cc apt-0.5.3/cmdline/apt-cache.cc
--- old.apt-0.5.3/cmdline/apt-cache.cc	Thu Mar  8 10:20:43 2001
+++ apt-0.5.3/cmdline/apt-cache.cc	Sat Aug 11 20:38:37 2001
@@ -1196,6 +1196,10 @@
                                     {"pkgnames",&ShowPkgNames},
                                     {0,0}};
 
+   setlocale(LC_ALL, "");
+   textdomain("apt");
+   bindtextdomain("apt", "/usr/share/locale");
+
    CacheInitialize();
    
    // Parse the command line and initialize the package library
diff -urN old.apt-0.5.3/cmdline/apt-cdrom.cc apt-0.5.3/cmdline/apt-cdrom.cc
--- old.apt-0.5.3/cmdline/apt-cdrom.cc	Tue Feb 20 15:03:17 2001
+++ apt-0.5.3/cmdline/apt-cdrom.cc	Sat Aug 11 20:39:07 2001
@@ -769,6 +769,10 @@
       {"add",&DoAdd},
       {"ident",&DoIdent},
       {0,0}};
+
+   setlocale(LC_ALL, "");
+   textdomain("apt");
+   bindtextdomain("apt", "/usr/share/locale");
 	 
    // Parse the command line and initialize the package library
    CommandLine CmdL(Args,_config);
diff -urN old.apt-0.5.3/cmdline/apt-config.cc apt-0.5.3/cmdline/apt-config.cc
--- old.apt-0.5.3/cmdline/apt-config.cc	Tue Feb 20 15:03:17 2001
+++ apt-0.5.3/cmdline/apt-config.cc	Sat Aug 11 20:39:41 2001
@@ -98,6 +98,10 @@
    CommandLine::Dispatch Cmds[] = {{"shell",&DoShell},
                                    {"dump",&DoDump},
                                    {0,0}};
+
+   setlocale(LC_ALL, "");
+   textdomain("apt");
+   bindtextdomain("apt", "/usr/share/locale");
    
    // Parse the command line and initialize the package library
    CommandLine CmdL(Args,_config);
diff -urN old.apt-0.5.3/cmdline/apt-extracttemplates.cc apt-0.5.3/cmdline/apt-extracttemplates.cc
--- old.apt-0.5.3/cmdline/apt-extracttemplates.cc	Sun Mar  4 07:02:39 2001
+++ apt-0.5.3/cmdline/apt-extracttemplates.cc	Sat Aug 11 20:39:51 2001
@@ -340,6 +340,10 @@
 		{'o',"option",0,CommandLine::ArbItem},
 		{0,0,0,0}};
 	
+	setlocale(LC_ALL, "");
+	textdomain("apt");
+	bindtextdomain("apt", "/usr/share/locale");
+
 	// Parse the command line and initialize the package library
 	CommandLine CmdL(Args,_config);
 	if (pkgInitConfig(*_config) == false ||
diff -urN old.apt-0.5.3/cmdline/apt-get.cc apt-0.5.3/cmdline/apt-get.cc
--- old.apt-0.5.3/cmdline/apt-get.cc	Sun Mar  4 10:36:26 2001
+++ apt-0.5.3/cmdline/apt-get.cc	Sat Aug 11 20:40:02 2001
@@ -2091,6 +2091,10 @@
       				   {"help",&ShowHelp},
                                    {0,0}};
    
+   setlocale(LC_ALL, "");
+   textdomain("apt");
+   bindtextdomain("apt", "/usr/share/locale");
+
    // Parse the command line and initialize the package library
    CommandLine CmdL(Args,_config);
    if (pkgInitConfig(*_config) == false ||
diff -urN old.apt-0.5.3/cmdline/apt-sortpkgs.cc apt-0.5.3/cmdline/apt-sortpkgs.cc
--- old.apt-0.5.3/cmdline/apt-sortpkgs.cc	Sun Feb 25 13:07:30 2001
+++ apt-0.5.3/cmdline/apt-sortpkgs.cc	Sat Aug 11 20:40:12 2001
@@ -169,6 +169,10 @@
       {'o',"option",0,CommandLine::ArbItem},
       {0,0,0,0}};
    
+   setlocale(LC_ALL, "");
+   textdomain("apt");
+   bindtextdomain("apt", "/usr/share/locale");
+
    // Parse the command line and initialize the package library
    CommandLine CmdL(Args,_config);
    if (pkgInitConfig(*_config) == false ||
diff -urN old.apt-0.5.3/po/apt.po apt-0.5.3/po/apt.po
--- old.apt-0.5.3/po/apt.po	Thu Jan  1 08:00:00 1970
+++ apt-0.5.3/po/apt.po	Sat Aug 11 20:30:40 2001
@@ -0,0 +1,1241 @@
+#
+# In the hope that Debian can be more easy to used.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Yuan-Chen Cheng <ycheng@sinica.edu.tw>, 2001.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2001-08-11 20:29+0800\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: apt-pkg/contrib/cdromutl.cc:55
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr ""
+
+#: apt-pkg/acquire.cc:409 apt-pkg/clean.cc:44 apt-pkg/contrib/cdromutl.cc:149
+#, c-format
+msgid "Unable to change to %s"
+msgstr ""
+
+#: apt-pkg/acquire.cc:403 apt-pkg/clean.cc:38 apt-pkg/contrib/cdromutl.cc:153
+#: apt-pkg/contrib/configuration.cc:698
+#, c-format
+msgid "Unable to read %s"
+msgstr ""
+
+#: apt-pkg/contrib/cdromutl.cc:190
+msgid "Failed to stat the cdrom"
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:73
+#, c-format
+msgid "Command line option '%c' [from %s] is not known."
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:99 apt-pkg/contrib/cmndline.cc:107
+#: apt-pkg/contrib/cmndline.cc:115
+#, c-format
+msgid "Command line option %s is not understood"
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:120
+#, c-format
+msgid "Command line option %s is not boolean"
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:159 apt-pkg/contrib/cmndline.cc:180
+#, c-format
+msgid "Option %s requires an argument."
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:194 apt-pkg/contrib/cmndline.cc:200
+#, c-format
+msgid "Option %s: Configuration item sepecification must have an =<val>."
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:230
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:261
+#, c-format
+msgid "Option '%s' is too long"
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:294
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:344
+#, c-format
+msgid "Invalid operation %s"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:443
+#, c-format
+msgid "Opening configuration file %s"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:553
+#, c-format
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:572
+#, c-format
+msgid "Syntax error %s:%u: Malformed Tag"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:589
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:629
+#, c-format
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:636
+#, c-format
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:640 apt-pkg/contrib/configuration.cc:645
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:649
+#, c-format
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:683
+#, c-format
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:77
+#, c-format
+msgid "Not using locking for read only lock file %s"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Could not open lock file %s"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:100
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:104
+#, c-format
+msgid "Could not get lock %s"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:355
+#, c-format
+msgid "Waited, for %s but it wasn't there"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:365
+#, c-format
+msgid "Sub-process %s received a segmentation fault."
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:368
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:370
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:414
+#, c-format
+msgid "Could not open file %s"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:446
+msgid "Read error"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:465
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:483
+msgid "Write error"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:495
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:570
+msgid "Problem closing the file"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:576
+msgid "Problem unlinking the file"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:587
+msgid "Problem syncing the file"
+msgstr ""
+
+#: apt-pkg/contrib/mmap.cc:82
+msgid "Can't mmap an empty file"
+msgstr ""
+
+#: apt-pkg/contrib/mmap.cc:87
+#, c-format
+msgid "Couldn't make mmap of %lu bytes"
+msgstr ""
+
+#: apt-pkg/contrib/progress.cc:151
+#, c-format
+msgid "\r%s... Error!"
+msgstr ""
+
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "\r%s... Done"
+msgstr ""
+
+#: apt-pkg/contrib/strutl.cc:861
+#, c-format
+msgid "Selection %s not found"
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:122
+#, c-format
+msgid "rename failed, %s (%s -> %s)."
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:348
+#, c-format
+msgid ""
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:382
+#, c-format
+msgid ""
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:413
+#, c-format
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:495
+msgid "Size mismatch"
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:505
+msgid "MD5Sum mismatch"
+msgstr ""
+
+#: apt-pkg/acquire-worker.cc:107
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr ""
+
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr ""
+
+#: apt-pkg/acquire.cc:57
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr ""
+
+#: apt-pkg/acquire.cc:61
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr ""
+
+#: apt-pkg/algorithms.cc:228
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+
+#: apt-pkg/algorithms.cc:1025
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+
+#: apt-pkg/algorithms.cc:1027
+msgid "Unable to correct problems, you have held broken packages."
+msgstr ""
+
+#: apt-pkg/cachefile.cc:64 cmdline/apt-get.cc:647 cmdline/apt-get.cc:1591
+#: cmdline/apt-get.cc:1802
+msgid "The list of sources could not be read."
+msgstr ""
+
+#: apt-pkg/cachefile.cc:70
+msgid "The package lists or status file could not be parsed or opened."
+msgstr ""
+
+#: apt-pkg/cachefile.cc:74
+msgid "You may want to run apt-get update to correct these missing files"
+msgstr ""
+
+#: apt-pkg/clean.cc:61
+#, c-format
+msgid "Unable to stat %s."
+msgstr ""
+
+#: apt-pkg/depcache.cc:60 apt-pkg/depcache.cc:89
+msgid "Building Dependency Tree"
+msgstr ""
+
+#: apt-pkg/depcache.cc:61
+msgid "Candidate Versions"
+msgstr ""
+
+#: apt-pkg/depcache.cc:90
+msgid "Dependency Generation"
+msgstr ""
+
+#: apt-pkg/init.cc:108
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr ""
+
+#: apt-pkg/init.cc:124
+msgid "Unable to determine a suitable system type"
+msgstr ""
+
+#: apt-pkg/packagemanager.cc:395
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:124
+msgid "Empty package cache"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:130
+msgid "The package cache file is corrupted"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:135
+msgid "The package cache file is an incompatible version"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:140
+#, c-format
+msgid "This APT does not support the Versioning System '%s'"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:145
+msgid "The package cache was build for a different architecture"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:216
+msgid "Depends"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:216
+msgid "PreDepends"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:216
+msgid "Suggests"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:217
+msgid "Recommends"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:217
+msgid "Conflicts"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:217
+msgid "Replaces"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:218
+msgid "Obsoletes"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:229
+msgid "important"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:229
+msgid "required"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:229
+msgid "standard"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:230
+msgid "optional"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:230
+msgid "extra"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:70
+msgid "Cache has an incompatible versioning system"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:113
+#, c-format
+msgid "Error occured while processing %s (NewPackage)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:125
+#, c-format
+msgid "Error occured while processing %s (UsePackage1)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:146
+#, c-format
+msgid "Error occured while processing %s (UsePackage2)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:149
+#, c-format
+msgid "Error occured while processing %s (NewFileVer1)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:178
+#, c-format
+msgid "Error occured while processing %s (NewVersion1)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:181
+#, c-format
+msgid "Error occured while processing %s (UsePackage3)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:184
+#, c-format
+msgid "Error occured while processing %s (NewVersion2)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:501
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:569 apt-pkg/pkgcachegen.cc:612
+#: apt-pkg/pkgcachegen.cc:617 apt-pkg/pkgcachegen.cc:736
+msgid "Reading Package Lists"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:610 cmdline/apt-extracttemplates.cc:256
+#, c-format
+msgid "Unable to write to %s"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:681 apt-pkg/pkgcachegen.cc:688
+msgid "IO Error saving source cache"
+msgstr ""
+
+#: apt-pkg/pkgrecords.cc:37
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr ""
+
+#: apt-pkg/policy.cc:250
+msgid "Invalid record in the preferences file, no Package header"
+msgstr ""
+
+#: apt-pkg/policy.cc:272
+#, c-format
+msgid "Did not understand pin type %s"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:85
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:87
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:96
+#, c-format
+msgid "Malformed line %lu in source list %s (Absolute dist)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:103
+#, c-format
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:144
+#, c-format
+msgid "Opening %s"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:170
+#, c-format
+msgid "Malformed line %u in source list %s (type)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:174
+#, c-format
+msgid "Type '%s' is not known in on line %u in source list %s"
+msgstr ""
+
+#: apt-pkg/srcrecords.cc:48
+msgid "Sorry, you must put some 'source' URIs in your sources.list"
+msgstr ""
+
+#: apt-pkg/tagfile.cc:69
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr ""
+
+#: apt-pkg/tagfile.cc:162
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr ""
+
+#: cmdline/acqprogress.cc:52
+msgid "Hit "
+msgstr ""
+
+#: cmdline/acqprogress.cc:76
+msgid "Get:"
+msgstr ""
+
+#: cmdline/acqprogress.cc:107
+msgid "Ign "
+msgstr ""
+
+#: cmdline/acqprogress.cc:111
+msgid "Err "
+msgstr ""
+
+#: cmdline/acqprogress.cc:132
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr ""
+
+#: cmdline/acqprogress.cc:222
+msgid " [Working]"
+msgstr ""
+
+#: cmdline/acqprogress.cc:268
+#, c-format
+msgid ""
+"Media Change: Please insert the disc labeled '%s' in the drive '%s' and "
+"press enter\n"
+msgstr ""
+
+#: cmdline/apt-cache.cc:129
+#, c-format
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr ""
+
+#: cmdline/apt-cache.cc:169 cmdline/apt-cache.cc:519 cmdline/apt-cache.cc:665
+#: cmdline/apt-cache.cc:1015
+#, c-format
+msgid "Unable to locate package %s"
+msgstr ""
+
+#: cmdline/apt-cache.cc:226
+msgid "Total Package Names : "
+msgstr ""
+
+#: cmdline/apt-cache.cc:266
+msgid "  Normal Packages: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:267
+msgid "  Pure Virtual Packages: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:268
+msgid "  Single Virtual Packages: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:269
+msgid "  Mixed Virtual Packages: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:270
+msgid "  Missing: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:272
+msgid "Total Distinct Versions: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:274
+msgid "Total Dependencies: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:277
+msgid "Total Ver/File relations: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:279
+msgid "Total Provides Mappings: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:291
+msgid "Total Globbed Strings: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:305
+msgid "Total Dependency Version space: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:310
+msgid "Total Slack space: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:318
+msgid "Total Space Accounted for: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:438 cmdline/apt-cache.cc:865
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr ""
+
+#: cmdline/apt-cache.cc:907
+msgid "You must give exactly one pattern"
+msgstr ""
+
+#: cmdline/apt-cache.cc:1117 cmdline/apt-cdrom.cc:722 cmdline/apt-config.cc:68
+#: cmdline/apt-extracttemplates.cc:222 cmdline/apt-get.cc:1924
+#: cmdline/apt-sortpkgs.cc:141 ftparchive/apt-ftparchive.cc:531
+#, c-format
+msgid "%s %s for %s %s compiled on %s %s\n"
+msgstr ""
+
+#: cmdline/apt-cache.cc:1121
+msgid ""
+"Usage: apt-cache [options] command\n"
+"       apt-cache [options] add file1 [file1 ...]\n"
+"       apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+"   add - Add an package file to the source cache\n"
+"   gencaches - Build both the package and source cache\n"
+"   showpkg - Show some general information for a single package\n"
+"   stats - Show some basic statistics\n"
+"   dump - Show the entire file in a terse form\n"
+"   dumpavail - Print an available file to stdout\n"
+"   unmet - Show unmet dependencies\n"
+"   search - Search the package list for a regex pattern\n"
+"   show - Show a readable record for the package\n"
+"   depends - Show raw dependency information for a package\n"
+"   pkgnames - List the names of all packages\n"
+"   dotty - Generate package graphs for GraphVis\n"
+"\n"
+"Options:\n"
+"  -h   This help text.\n"
+"  -p=? The package cache.\n"
+"  -s=? The source cache.\n"
+"  -q   Disable progress indicator.\n"
+"  -i   Show only important deps for the unmet command.\n"
+"  -c=? Read this configuration file\n"
+"  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+
+#: cmdline/apt-config.cc:39
+msgid "Arguments not in pairs"
+msgstr ""
+
+#: cmdline/apt-config.cc:74
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+"   shell - Shell mode\n"
+"   dump - Show the configuration\n"
+"\n"
+"Options:\n"
+"  -h   This help text.\n"
+"  -c=? Read this configuration file\n"
+"  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:99
+msgid "Y"
+msgstr ""
+
+#: cmdline/apt-get.cc:176
+msgid "Sorry, but the following packages have unmet dependencies:"
+msgstr ""
+
+#: cmdline/apt-get.cc:238
+#, c-format
+msgid "but %s is installed"
+msgstr ""
+
+#: cmdline/apt-get.cc:240
+#, c-format
+msgid "but %s is to be installed"
+msgstr ""
+
+#: cmdline/apt-get.cc:247
+msgid "but it is not installable"
+msgstr ""
+
+#: cmdline/apt-get.cc:249
+msgid "but it is a virtual package"
+msgstr ""
+
+#: cmdline/apt-get.cc:252
+msgid "but it is not installed"
+msgstr ""
+
+#: cmdline/apt-get.cc:252
+msgid "but it is not going to be installed"
+msgstr ""
+
+#: cmdline/apt-get.cc:257
+msgid " or"
+msgstr ""
+
+#: cmdline/apt-get.cc:283
+msgid "The following NEW packages will be installed:"
+msgstr ""
+
+#: cmdline/apt-get.cc:306
+msgid "The following packages will be REMOVED:"
+msgstr ""
+
+#: cmdline/apt-get.cc:326
+msgid "The following packages have been kept back"
+msgstr ""
+
+#: cmdline/apt-get.cc:345
+msgid "The following packages will be upgraded"
+msgstr ""
+
+#: cmdline/apt-get.cc:364
+msgid "The following packages will be DOWNGRADED"
+msgstr ""
+
+#: cmdline/apt-get.cc:381
+msgid "The following held packages will be changed:"
+msgstr ""
+
+#: cmdline/apt-get.cc:432
+#, c-format
+msgid "%s (due to %s) "
+msgstr ""
+
+#: cmdline/apt-get.cc:439
+msgid ""
+"WARNING: The following essential packages will be removed\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+
+#: cmdline/apt-get.cc:469
+#, c-format
+msgid "%lu packages upgraded, %lu newly installed, "
+msgstr ""
+
+#: cmdline/apt-get.cc:473
+#, c-format
+msgid "%lu reinstalled, "
+msgstr ""
+
+#: cmdline/apt-get.cc:475
+#, c-format
+msgid "%lu downgraded, "
+msgstr ""
+
+#: cmdline/apt-get.cc:477
+#, c-format
+msgid "%lu to remove and %lu  not upgraded.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:481
+#, c-format
+msgid "%lu packages not fully installed or removed.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:541
+msgid "Correcting dependencies..."
+msgstr ""
+
+#: cmdline/apt-get.cc:544
+msgid " failed."
+msgstr ""
+
+#: cmdline/apt-get.cc:547
+msgid "Unable to correct dependencies"
+msgstr ""
+
+#: cmdline/apt-get.cc:550
+msgid "Unable to minimize the upgrade set"
+msgstr ""
+
+#: cmdline/apt-get.cc:552
+msgid " Done"
+msgstr ""
+
+#: cmdline/apt-get.cc:556
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr ""
+
+#: cmdline/apt-get.cc:559
+msgid "Unmet dependencies. Try using -f."
+msgstr ""
+
+#: cmdline/apt-get.cc:612
+msgid "Packages need to be removed but Remove is disabled."
+msgstr ""
+
+#: cmdline/apt-get.cc:637 cmdline/apt-get.cc:1510 cmdline/apt-get.cc:1543
+msgid "Unable to lock the download directory"
+msgstr ""
+
+#: cmdline/apt-get.cc:667
+#, c-format
+msgid "Need to get %sB/%sB of archives. "
+msgstr ""
+
+#: cmdline/apt-get.cc:670
+#, c-format
+msgid "Need to get %sB of archives. "
+msgstr ""
+
+#: cmdline/apt-get.cc:675
+#, c-format
+msgid "After unpacking %sB will be used.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:678
+#, c-format
+msgid "After unpacking %sB will be freed.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:694
+#, c-format
+msgid "Sorry, you don't have enough free space in %s to hold all the .debs."
+msgstr ""
+
+#: cmdline/apt-get.cc:703
+msgid "There are problems and -y was used without --force-yes"
+msgstr ""
+
+#: cmdline/apt-get.cc:709 cmdline/apt-get.cc:729
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+
+#: cmdline/apt-get.cc:711
+msgid "Yes, do as I say!"
+msgstr ""
+
+#: cmdline/apt-get.cc:713
+#, c-format
+msgid ""
+"You are about to do something potentially harmful\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+
+#: cmdline/apt-get.cc:719 cmdline/apt-get.cc:738
+msgid "Abort."
+msgstr ""
+
+#: cmdline/apt-get.cc:734
+msgid "Do you want to continue? [Y/n] "
+msgstr ""
+
+#: cmdline/apt-get.cc:803 cmdline/apt-get.cc:1156 cmdline/apt-get.cc:1700
+#, c-format
+msgid "Failed to fetch %s  %s\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:821
+msgid "Some files failed to download"
+msgstr ""
+
+#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1709
+msgid "Download complete and in download only mode"
+msgstr ""
+
+#: cmdline/apt-get.cc:828
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+
+#: cmdline/apt-get.cc:832
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+
+#: cmdline/apt-get.cc:837
+msgid "Unable to correct missing packages."
+msgstr ""
+
+#: cmdline/apt-get.cc:838
+msgid "Aborting Install."
+msgstr ""
+
+#: cmdline/apt-get.cc:871
+#, c-format
+msgid "Note, selecting %s instead of %s\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:881
+#, c-format
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:894
+#, c-format
+msgid "Package %s is not installed, so not removed\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:905
+#, c-format
+msgid "Package %s is a virtual package provided by:\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:917
+msgid " [Installed]"
+msgstr ""
+
+#: cmdline/apt-get.cc:922
+msgid "You should explicitly select one to install."
+msgstr ""
+
+#: cmdline/apt-get.cc:927
+#, c-format
+msgid ""
+"Package %s has no available version, but exists in the database.\n"
+"This typically means that the package was mentioned in a dependency and\n"
+"never uploaded, has been obsoleted or is not available with the contents\n"
+"of sources.list\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:945
+msgid "However the following packages replace it:"
+msgstr ""
+
+#: cmdline/apt-get.cc:948
+#, c-format
+msgid "Package %s has no installation candidate"
+msgstr ""
+
+#: cmdline/apt-get.cc:968
+#, c-format
+msgid "Sorry, re-installation of %s is not possible, it cannot be downloaded."
+msgstr ""
+
+#: cmdline/apt-get.cc:976
+#, c-format
+msgid "Sorry, %s is already the newest version.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1002
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr ""
+
+#: cmdline/apt-get.cc:1004
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr ""
+
+#: cmdline/apt-get.cc:1010
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1120
+msgid "The update command takes no arguments"
+msgstr ""
+
+#: cmdline/apt-get.cc:1133
+msgid "Unable to lock the list directory"
+msgstr ""
+
+#: cmdline/apt-get.cc:1175
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+
+#: cmdline/apt-get.cc:1194
+msgid "Internal Error, AllUpgrade broke stuff"
+msgstr ""
+
+#: cmdline/apt-get.cc:1282 cmdline/apt-get.cc:1315
+#, c-format
+msgid "Couldn't find package %s"
+msgstr ""
+
+#: cmdline/apt-get.cc:1295
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr ""
+
+#: cmdline/apt-get.cc:1332
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr ""
+
+#: cmdline/apt-get.cc:1335
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+
+#: cmdline/apt-get.cc:1347
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+
+#: cmdline/apt-get.cc:1355
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+
+#: cmdline/apt-get.cc:1360
+msgid "The following information may help to resolve the situation:"
+msgstr ""
+
+#: cmdline/apt-get.cc:1363
+msgid "Sorry, broken packages"
+msgstr ""
+
+#: cmdline/apt-get.cc:1386
+msgid "The following extra packages will be installed:"
+msgstr ""
+
+#: cmdline/apt-get.cc:1405
+msgid "Calculating Upgrade... "
+msgstr ""
+
+#: cmdline/apt-get.cc:1408
+msgid "Failed"
+msgstr ""
+
+#: cmdline/apt-get.cc:1413
+msgid "Done"
+msgstr ""
+
+#: cmdline/apt-get.cc:1586
+msgid "Must specify at least one package to fetch source for"
+msgstr ""
+
+#: cmdline/apt-get.cc:1613 cmdline/apt-get.cc:1820
+#, c-format
+msgid "Unable to find a source package for %s"
+msgstr ""
+
+#: cmdline/apt-get.cc:1660
+#, c-format
+msgid "Sorry, you don't have enough free space in %s"
+msgstr ""
+
+#: cmdline/apt-get.cc:1665
+#, c-format
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1668
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1674
+#, c-format
+msgid "Fetch Source %s\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1705
+msgid "Failed to fetch some archives."
+msgstr ""
+
+#: cmdline/apt-get.cc:1733
+#, c-format
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1745
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1762
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1781
+msgid "Child process failed"
+msgstr ""
+
+#: cmdline/apt-get.cc:1797
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
+
+#: cmdline/apt-get.cc:1825
+#, c-format
+msgid "Unable to get build-dependency information for %s"
+msgstr ""
+
+#: cmdline/apt-get.cc:1829
+#, c-format
+msgid "%s has no build depends.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1841
+#, c-format
+msgid ""
+"%s dependency on %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+
+#: cmdline/apt-get.cc:1892
+msgid ""
+"Some broken packages were found while trying to process build-dependencies.\n"
+"You might want to run `apt-get -f install' to correct these."
+msgstr ""
+
+#: cmdline/apt-get.cc:1897
+msgid "Failed to process build dependencies"
+msgstr ""
+
+#: cmdline/apt-get.cc:1929
+msgid "Supported Modules:"
+msgstr ""
+
+#: cmdline/apt-get.cc:1970
+msgid ""
+"Usage: apt-get [options] command\n"
+"       apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+"       apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+"   update - Retrieve new lists of packages\n"
+"   upgrade - Perform an upgrade\n"
+"   install - Install new packages (pkg is libc6 not libc6.deb)\n"
+"   remove - Remove packages\n"
+"   source - Download source archives\n"
+"   build-dep - Configure build-dependencies for source packages\n"
+"   dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+"   dselect-upgrade - Follow dselect selections\n"
+"   clean - Erase downloaded archive files\n"
+"   autoclean - Erase old downloaded archive files\n"
+"   check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+"  -h  This help text.\n"
+"  -q  Loggable output - no progress indicator\n"
+"  -qq No output except for errors\n"
+"  -d  Download only - do NOT install or unpack archives\n"
+"  -s  No-act. Perform ordering simulation\n"
+"  -y  Assume Yes to all queries and do not prompt\n"
+"  -f  Attempt to continue if the integrity check fails\n"
+"  -m  Attempt to continue if archives are unlocatable\n"
+"  -u  Show a list of upgraded packages as well\n"
+"  -b  Build the source package after fetching it\n"
+"  -c=? Read this configuration file\n"
+"  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+"                       This APT has Super Cow Powers.\n"
+msgstr ""
+
+#: cmdline/apt-sortpkgs.cc:83
+msgid "Unknown package record!"
+msgstr ""
+
+#: cmdline/apt-sortpkgs.cc:147
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+"  -h   This help text\n"
+"  -s   Use source file sorting\n"
+"  -c=? Read this configuration file\n"
+"  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+
+#: cmdline/apt-extracttemplates.cc:95
+#, c-format
+msgid "%s not a valid DEB package."
+msgstr ""
+
+#: cmdline/apt-extracttemplates.cc:229
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+"  -h   This help text\n"
+"  -t   Set the temp dir\n"
+"  -c=? Read this configuration file\n"
+"  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+
+#: cmdline/apt-extracttemplates.cc:297
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr ""
diff -urN old.apt-0.5.3/po/makefile apt-0.5.3/po/makefile
--- old.apt-0.5.3/po/makefile	Thu Jan  1 08:00:00 1970
+++ apt-0.5.3/po/makefile	Sat Aug 11 20:34:51 2001
@@ -0,0 +1,7 @@
+
+OBJS=zh_TW.Big5.mo
+
+all: $(OBJS)
+
+zh_TW.Big5.mo: zh_TW.Big5.po
+	msgfmt -o zh_TW.Big5.mo zh_TW.Big5.po
Binary files old.apt-0.5.3/po/zh_TW.Big5.mo and apt-0.5.3/po/zh_TW.Big5.mo differ
diff -urN old.apt-0.5.3/po/zh_TW.Big5.po apt-0.5.3/po/zh_TW.Big5.po
--- old.apt-0.5.3/po/zh_TW.Big5.po	Thu Jan  1 08:00:00 1970
+++ apt-0.5.3/po/zh_TW.Big5.po	Sat Aug 11 20:47:31 2001
@@ -0,0 +1,1241 @@
+#
+# In the hope that Debian can be more easy to used.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Yuan-Chen Cheng <ycheng@sinica.edu.tw>, 2001.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2001-08-11 20:29+0800\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Yuan-Chen Cheng <ycheng@sinica.edu.tw>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=big5\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: apt-pkg/contrib/cdromutl.cc:55
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr ""
+
+#: apt-pkg/acquire.cc:409 apt-pkg/clean.cc:44 apt-pkg/contrib/cdromutl.cc:149
+#, c-format
+msgid "Unable to change to %s"
+msgstr ""
+
+#: apt-pkg/acquire.cc:403 apt-pkg/clean.cc:38 apt-pkg/contrib/cdromutl.cc:153
+#: apt-pkg/contrib/configuration.cc:698
+#, c-format
+msgid "Unable to read %s"
+msgstr ""
+
+#: apt-pkg/contrib/cdromutl.cc:190
+msgid "Failed to stat the cdrom"
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:73
+#, c-format
+msgid "Command line option '%c' [from %s] is not known."
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:99 apt-pkg/contrib/cmndline.cc:107
+#: apt-pkg/contrib/cmndline.cc:115
+#, c-format
+msgid "Command line option %s is not understood"
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:120
+#, c-format
+msgid "Command line option %s is not boolean"
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:159 apt-pkg/contrib/cmndline.cc:180
+#, c-format
+msgid "Option %s requires an argument."
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:194 apt-pkg/contrib/cmndline.cc:200
+#, c-format
+msgid "Option %s: Configuration item sepecification must have an =<val>."
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:230
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:261
+#, c-format
+msgid "Option '%s' is too long"
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:294
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr ""
+
+#: apt-pkg/contrib/cmndline.cc:344
+#, c-format
+msgid "Invalid operation %s"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:443
+#, c-format
+msgid "Opening configuration file %s"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:553
+#, c-format
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:572
+#, c-format
+msgid "Syntax error %s:%u: Malformed Tag"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:589
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:629
+#, c-format
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:636
+#, c-format
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:640 apt-pkg/contrib/configuration.cc:645
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:649
+#, c-format
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:683
+#, c-format
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:77
+#, c-format
+msgid "Not using locking for read only lock file %s"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Could not open lock file %s"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:100
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:104
+#, c-format
+msgid "Could not get lock %s"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:355
+#, c-format
+msgid "Waited, for %s but it wasn't there"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:365
+#, c-format
+msgid "Sub-process %s received a segmentation fault."
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:368
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:370
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:414
+#, c-format
+msgid "Could not open file %s"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:446
+msgid "Read error"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:465
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:483
+msgid "Write error"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:495
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:570
+msgid "Problem closing the file"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:576
+msgid "Problem unlinking the file"
+msgstr ""
+
+#: apt-pkg/contrib/fileutl.cc:587
+msgid "Problem syncing the file"
+msgstr ""
+
+#: apt-pkg/contrib/mmap.cc:82
+msgid "Can't mmap an empty file"
+msgstr ""
+
+#: apt-pkg/contrib/mmap.cc:87
+#, c-format
+msgid "Couldn't make mmap of %lu bytes"
+msgstr ""
+
+#: apt-pkg/contrib/progress.cc:151
+#, c-format
+msgid "\r%s... Error!"
+msgstr ""
+
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "\r%s... Done"
+msgstr "\r%s... 完成"
+
+#: apt-pkg/contrib/strutl.cc:861
+#, c-format
+msgid "Selection %s not found"
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:122
+#, c-format
+msgid "rename failed, %s (%s -> %s)."
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:348
+#, c-format
+msgid ""
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:382
+#, c-format
+msgid ""
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:413
+#, c-format
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:495
+msgid "Size mismatch"
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:505
+msgid "MD5Sum mismatch"
+msgstr ""
+
+#: apt-pkg/acquire-worker.cc:107
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr ""
+
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr ""
+
+#: apt-pkg/acquire.cc:57
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr ""
+
+#: apt-pkg/acquire.cc:61
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr ""
+
+#: apt-pkg/algorithms.cc:228
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+
+#: apt-pkg/algorithms.cc:1025
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+
+#: apt-pkg/algorithms.cc:1027
+msgid "Unable to correct problems, you have held broken packages."
+msgstr ""
+
+#: apt-pkg/cachefile.cc:64 cmdline/apt-get.cc:647 cmdline/apt-get.cc:1591
+#: cmdline/apt-get.cc:1802
+msgid "The list of sources could not be read."
+msgstr ""
+
+#: apt-pkg/cachefile.cc:70
+msgid "The package lists or status file could not be parsed or opened."
+msgstr ""
+
+#: apt-pkg/cachefile.cc:74
+msgid "You may want to run apt-get update to correct these missing files"
+msgstr ""
+
+#: apt-pkg/clean.cc:61
+#, c-format
+msgid "Unable to stat %s."
+msgstr ""
+
+#: apt-pkg/depcache.cc:60 apt-pkg/depcache.cc:89
+msgid "Building Dependency Tree"
+msgstr "建立套件依存關係"
+
+#: apt-pkg/depcache.cc:61
+msgid "Candidate Versions"
+msgstr ""
+
+#: apt-pkg/depcache.cc:90
+msgid "Dependency Generation"
+msgstr ""
+
+#: apt-pkg/init.cc:108
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr ""
+
+#: apt-pkg/init.cc:124
+msgid "Unable to determine a suitable system type"
+msgstr ""
+
+#: apt-pkg/packagemanager.cc:395
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:124
+msgid "Empty package cache"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:130
+msgid "The package cache file is corrupted"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:135
+msgid "The package cache file is an incompatible version"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:140
+#, c-format
+msgid "This APT does not support the Versioning System '%s'"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:145
+msgid "The package cache was build for a different architecture"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:216
+msgid "Depends"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:216
+msgid "PreDepends"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:216
+msgid "Suggests"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:217
+msgid "Recommends"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:217
+msgid "Conflicts"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:217
+msgid "Replaces"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:218
+msgid "Obsoletes"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:229
+msgid "important"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:229
+msgid "required"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:229
+msgid "standard"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:230
+msgid "optional"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:230
+msgid "extra"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:70
+msgid "Cache has an incompatible versioning system"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:113
+#, c-format
+msgid "Error occured while processing %s (NewPackage)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:125
+#, c-format
+msgid "Error occured while processing %s (UsePackage1)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:146
+#, c-format
+msgid "Error occured while processing %s (UsePackage2)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:149
+#, c-format
+msgid "Error occured while processing %s (NewFileVer1)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:178
+#, c-format
+msgid "Error occured while processing %s (NewVersion1)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:181
+#, c-format
+msgid "Error occured while processing %s (UsePackage3)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:184
+#, c-format
+msgid "Error occured while processing %s (NewVersion2)"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:501
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:569 apt-pkg/pkgcachegen.cc:612
+#: apt-pkg/pkgcachegen.cc:617 apt-pkg/pkgcachegen.cc:736
+msgid "Reading Package Lists"
+msgstr "載入套件清單"
+
+#: apt-pkg/pkgcachegen.cc:610 cmdline/apt-extracttemplates.cc:256
+#, c-format
+msgid "Unable to write to %s"
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:681 apt-pkg/pkgcachegen.cc:688
+msgid "IO Error saving source cache"
+msgstr ""
+
+#: apt-pkg/pkgrecords.cc:37
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr ""
+
+#: apt-pkg/policy.cc:250
+msgid "Invalid record in the preferences file, no Package header"
+msgstr ""
+
+#: apt-pkg/policy.cc:272
+#, c-format
+msgid "Did not understand pin type %s"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:85
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:87
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:96
+#, c-format
+msgid "Malformed line %lu in source list %s (Absolute dist)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:103
+#, c-format
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:144
+#, c-format
+msgid "Opening %s"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:170
+#, c-format
+msgid "Malformed line %u in source list %s (type)"
+msgstr ""
+
+#: apt-pkg/sourcelist.cc:174
+#, c-format
+msgid "Type '%s' is not known in on line %u in source list %s"
+msgstr ""
+
+#: apt-pkg/srcrecords.cc:48
+msgid "Sorry, you must put some 'source' URIs in your sources.list"
+msgstr ""
+
+#: apt-pkg/tagfile.cc:69
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr ""
+
+#: apt-pkg/tagfile.cc:162
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr ""
+
+#: cmdline/acqprogress.cc:52
+msgid "Hit "
+msgstr ""
+
+#: cmdline/acqprogress.cc:76
+msgid "Get:"
+msgstr ""
+
+#: cmdline/acqprogress.cc:107
+msgid "Ign "
+msgstr ""
+
+#: cmdline/acqprogress.cc:111
+msgid "Err "
+msgstr ""
+
+#: cmdline/acqprogress.cc:132
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr ""
+
+#: cmdline/acqprogress.cc:222
+msgid " [Working]"
+msgstr ""
+
+#: cmdline/acqprogress.cc:268
+#, c-format
+msgid ""
+"Media Change: Please insert the disc labeled '%s' in the drive '%s' and "
+"press enter\n"
+msgstr ""
+
+#: cmdline/apt-cache.cc:129
+#, c-format
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr ""
+
+#: cmdline/apt-cache.cc:169 cmdline/apt-cache.cc:519 cmdline/apt-cache.cc:665
+#: cmdline/apt-cache.cc:1015
+#, c-format
+msgid "Unable to locate package %s"
+msgstr ""
+
+#: cmdline/apt-cache.cc:226
+msgid "Total Package Names : "
+msgstr ""
+
+#: cmdline/apt-cache.cc:266
+msgid "  Normal Packages: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:267
+msgid "  Pure Virtual Packages: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:268
+msgid "  Single Virtual Packages: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:269
+msgid "  Mixed Virtual Packages: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:270
+msgid "  Missing: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:272
+msgid "Total Distinct Versions: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:274
+msgid "Total Dependencies: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:277
+msgid "Total Ver/File relations: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:279
+msgid "Total Provides Mappings: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:291
+msgid "Total Globbed Strings: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:305
+msgid "Total Dependency Version space: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:310
+msgid "Total Slack space: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:318
+msgid "Total Space Accounted for: "
+msgstr ""
+
+#: cmdline/apt-cache.cc:438 cmdline/apt-cache.cc:865
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr ""
+
+#: cmdline/apt-cache.cc:907
+msgid "You must give exactly one pattern"
+msgstr ""
+
+#: cmdline/apt-cache.cc:1117 cmdline/apt-cdrom.cc:722 cmdline/apt-config.cc:68
+#: cmdline/apt-extracttemplates.cc:222 cmdline/apt-get.cc:1924
+#: cmdline/apt-sortpkgs.cc:141 ftparchive/apt-ftparchive.cc:531
+#, c-format
+msgid "%s %s for %s %s compiled on %s %s\n"
+msgstr ""
+
+#: cmdline/apt-cache.cc:1121
+msgid ""
+"Usage: apt-cache [options] command\n"
+"       apt-cache [options] add file1 [file1 ...]\n"
+"       apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+"   add - Add an package file to the source cache\n"
+"   gencaches - Build both the package and source cache\n"
+"   showpkg - Show some general information for a single package\n"
+"   stats - Show some basic statistics\n"
+"   dump - Show the entire file in a terse form\n"
+"   dumpavail - Print an available file to stdout\n"
+"   unmet - Show unmet dependencies\n"
+"   search - Search the package list for a regex pattern\n"
+"   show - Show a readable record for the package\n"
+"   depends - Show raw dependency information for a package\n"
+"   pkgnames - List the names of all packages\n"
+"   dotty - Generate package graphs for GraphVis\n"
+"\n"
+"Options:\n"
+"  -h   This help text.\n"
+"  -p=? The package cache.\n"
+"  -s=? The source cache.\n"
+"  -q   Disable progress indicator.\n"
+"  -i   Show only important deps for the unmet command.\n"
+"  -c=? Read this configuration file\n"
+"  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+
+#: cmdline/apt-config.cc:39
+msgid "Arguments not in pairs"
+msgstr ""
+
+#: cmdline/apt-config.cc:74
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+"   shell - Shell mode\n"
+"   dump - Show the configuration\n"
+"\n"
+"Options:\n"
+"  -h   This help text.\n"
+"  -c=? Read this configuration file\n"
+"  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:99
+msgid "Y"
+msgstr ""
+
+#: cmdline/apt-get.cc:176
+msgid "Sorry, but the following packages have unmet dependencies:"
+msgstr ""
+
+#: cmdline/apt-get.cc:238
+#, c-format
+msgid "but %s is installed"
+msgstr ""
+
+#: cmdline/apt-get.cc:240
+#, c-format
+msgid "but %s is to be installed"
+msgstr ""
+
+#: cmdline/apt-get.cc:247
+msgid "but it is not installable"
+msgstr ""
+
+#: cmdline/apt-get.cc:249
+msgid "but it is a virtual package"
+msgstr ""
+
+#: cmdline/apt-get.cc:252
+msgid "but it is not installed"
+msgstr ""
+
+#: cmdline/apt-get.cc:252
+msgid "but it is not going to be installed"
+msgstr ""
+
+#: cmdline/apt-get.cc:257
+msgid " or"
+msgstr ""
+
+#: cmdline/apt-get.cc:283
+msgid "The following NEW packages will be installed:"
+msgstr ""
+
+#: cmdline/apt-get.cc:306
+msgid "The following packages will be REMOVED:"
+msgstr ""
+
+#: cmdline/apt-get.cc:326
+msgid "The following packages have been kept back"
+msgstr ""
+
+#: cmdline/apt-get.cc:345
+msgid "The following packages will be upgraded"
+msgstr ""
+
+#: cmdline/apt-get.cc:364
+msgid "The following packages will be DOWNGRADED"
+msgstr ""
+
+#: cmdline/apt-get.cc:381
+msgid "The following held packages will be changed:"
+msgstr ""
+
+#: cmdline/apt-get.cc:432
+#, c-format
+msgid "%s (due to %s) "
+msgstr ""
+
+#: cmdline/apt-get.cc:439
+msgid ""
+"WARNING: The following essential packages will be removed\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+
+#: cmdline/apt-get.cc:469
+#, c-format
+msgid "%lu packages upgraded, %lu newly installed, "
+msgstr ""
+
+#: cmdline/apt-get.cc:473
+#, c-format
+msgid "%lu reinstalled, "
+msgstr ""
+
+#: cmdline/apt-get.cc:475
+#, c-format
+msgid "%lu downgraded, "
+msgstr ""
+
+#: cmdline/apt-get.cc:477
+#, c-format
+msgid "%lu to remove and %lu  not upgraded.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:481
+#, c-format
+msgid "%lu packages not fully installed or removed.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:541
+msgid "Correcting dependencies..."
+msgstr ""
+
+#: cmdline/apt-get.cc:544
+msgid " failed."
+msgstr ""
+
+#: cmdline/apt-get.cc:547
+msgid "Unable to correct dependencies"
+msgstr ""
+
+#: cmdline/apt-get.cc:550
+msgid "Unable to minimize the upgrade set"
+msgstr ""
+
+#: cmdline/apt-get.cc:552
+msgid " Done"
+msgstr " 完成"
+
+#: cmdline/apt-get.cc:556
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr ""
+
+#: cmdline/apt-get.cc:559
+msgid "Unmet dependencies. Try using -f."
+msgstr ""
+
+#: cmdline/apt-get.cc:612
+msgid "Packages need to be removed but Remove is disabled."
+msgstr ""
+
+#: cmdline/apt-get.cc:637 cmdline/apt-get.cc:1510 cmdline/apt-get.cc:1543
+msgid "Unable to lock the download directory"
+msgstr ""
+
+#: cmdline/apt-get.cc:667
+#, c-format
+msgid "Need to get %sB/%sB of archives. "
+msgstr ""
+
+#: cmdline/apt-get.cc:670
+#, c-format
+msgid "Need to get %sB of archives. "
+msgstr ""
+
+#: cmdline/apt-get.cc:675
+#, c-format
+msgid "After unpacking %sB will be used.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:678
+#, c-format
+msgid "After unpacking %sB will be freed.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:694
+#, c-format
+msgid "Sorry, you don't have enough free space in %s to hold all the .debs."
+msgstr ""
+
+#: cmdline/apt-get.cc:703
+msgid "There are problems and -y was used without --force-yes"
+msgstr ""
+
+#: cmdline/apt-get.cc:709 cmdline/apt-get.cc:729
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+
+#: cmdline/apt-get.cc:711
+msgid "Yes, do as I say!"
+msgstr ""
+
+#: cmdline/apt-get.cc:713
+#, c-format
+msgid ""
+"You are about to do something potentially harmful\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+
+#: cmdline/apt-get.cc:719 cmdline/apt-get.cc:738
+msgid "Abort."
+msgstr ""
+
+#: cmdline/apt-get.cc:734
+msgid "Do you want to continue? [Y/n] "
+msgstr ""
+
+#: cmdline/apt-get.cc:803 cmdline/apt-get.cc:1156 cmdline/apt-get.cc:1700
+#, c-format
+msgid "Failed to fetch %s  %s\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:821
+msgid "Some files failed to download"
+msgstr ""
+
+#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1709
+msgid "Download complete and in download only mode"
+msgstr ""
+
+#: cmdline/apt-get.cc:828
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+
+#: cmdline/apt-get.cc:832
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+
+#: cmdline/apt-get.cc:837
+msgid "Unable to correct missing packages."
+msgstr ""
+
+#: cmdline/apt-get.cc:838
+msgid "Aborting Install."
+msgstr ""
+
+#: cmdline/apt-get.cc:871
+#, c-format
+msgid "Note, selecting %s instead of %s\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:881
+#, c-format
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:894
+#, c-format
+msgid "Package %s is not installed, so not removed\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:905
+#, c-format
+msgid "Package %s is a virtual package provided by:\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:917
+msgid " [Installed]"
+msgstr ""
+
+#: cmdline/apt-get.cc:922
+msgid "You should explicitly select one to install."
+msgstr ""
+
+#: cmdline/apt-get.cc:927
+#, c-format
+msgid ""
+"Package %s has no available version, but exists in the database.\n"
+"This typically means that the package was mentioned in a dependency and\n"
+"never uploaded, has been obsoleted or is not available with the contents\n"
+"of sources.list\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:945
+msgid "However the following packages replace it:"
+msgstr ""
+
+#: cmdline/apt-get.cc:948
+#, c-format
+msgid "Package %s has no installation candidate"
+msgstr ""
+
+#: cmdline/apt-get.cc:968
+#, c-format
+msgid "Sorry, re-installation of %s is not possible, it cannot be downloaded."
+msgstr ""
+
+#: cmdline/apt-get.cc:976
+#, c-format
+msgid "Sorry, %s is already the newest version.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1002
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr ""
+
+#: cmdline/apt-get.cc:1004
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr ""
+
+#: cmdline/apt-get.cc:1010
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1120
+msgid "The update command takes no arguments"
+msgstr ""
+
+#: cmdline/apt-get.cc:1133
+msgid "Unable to lock the list directory"
+msgstr ""
+
+#: cmdline/apt-get.cc:1175
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+
+#: cmdline/apt-get.cc:1194
+msgid "Internal Error, AllUpgrade broke stuff"
+msgstr ""
+
+#: cmdline/apt-get.cc:1282 cmdline/apt-get.cc:1315
+#, c-format
+msgid "Couldn't find package %s"
+msgstr ""
+
+#: cmdline/apt-get.cc:1295
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr ""
+
+#: cmdline/apt-get.cc:1332
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr ""
+
+#: cmdline/apt-get.cc:1335
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+
+#: cmdline/apt-get.cc:1347
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+
+#: cmdline/apt-get.cc:1355
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+
+#: cmdline/apt-get.cc:1360
+msgid "The following information may help to resolve the situation:"
+msgstr ""
+
+#: cmdline/apt-get.cc:1363
+msgid "Sorry, broken packages"
+msgstr ""
+
+#: cmdline/apt-get.cc:1386
+msgid "The following extra packages will be installed:"
+msgstr ""
+
+#: cmdline/apt-get.cc:1405
+msgid "Calculating Upgrade... "
+msgstr ""
+
+#: cmdline/apt-get.cc:1408
+msgid "Failed"
+msgstr ""
+
+#: cmdline/apt-get.cc:1413
+msgid "Done"
+msgstr "完成"
+
+#: cmdline/apt-get.cc:1586
+msgid "Must specify at least one package to fetch source for"
+msgstr ""
+
+#: cmdline/apt-get.cc:1613 cmdline/apt-get.cc:1820
+#, c-format
+msgid "Unable to find a source package for %s"
+msgstr ""
+
+#: cmdline/apt-get.cc:1660
+#, c-format
+msgid "Sorry, you don't have enough free space in %s"
+msgstr ""
+
+#: cmdline/apt-get.cc:1665
+#, c-format
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1668
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1674
+#, c-format
+msgid "Fetch Source %s\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1705
+msgid "Failed to fetch some archives."
+msgstr ""
+
+#: cmdline/apt-get.cc:1733
+#, c-format
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1745
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1762
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1781
+msgid "Child process failed"
+msgstr ""
+
+#: cmdline/apt-get.cc:1797
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
+
+#: cmdline/apt-get.cc:1825
+#, c-format
+msgid "Unable to get build-dependency information for %s"
+msgstr ""
+
+#: cmdline/apt-get.cc:1829
+#, c-format
+msgid "%s has no build depends.\n"
+msgstr ""
+
+#: cmdline/apt-get.cc:1841
+#, c-format
+msgid ""
+"%s dependency on %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+
+#: cmdline/apt-get.cc:1892
+msgid ""
+"Some broken packages were found while trying to process build-dependencies.\n"
+"You might want to run `apt-get -f install' to correct these."
+msgstr ""
+
+#: cmdline/apt-get.cc:1897
+msgid "Failed to process build dependencies"
+msgstr ""
+
+#: cmdline/apt-get.cc:1929
+msgid "Supported Modules:"
+msgstr ""
+
+#: cmdline/apt-get.cc:1970
+msgid ""
+"Usage: apt-get [options] command\n"
+"       apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+"       apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+"   update - Retrieve new lists of packages\n"
+"   upgrade - Perform an upgrade\n"
+"   install - Install new packages (pkg is libc6 not libc6.deb)\n"
+"   remove - Remove packages\n"
+"   source - Download source archives\n"
+"   build-dep - Configure build-dependencies for source packages\n"
+"   dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+"   dselect-upgrade - Follow dselect selections\n"
+"   clean - Erase downloaded archive files\n"
+"   autoclean - Erase old downloaded archive files\n"
+"   check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+"  -h  This help text.\n"
+"  -q  Loggable output - no progress indicator\n"
+"  -qq No output except for errors\n"
+"  -d  Download only - do NOT install or unpack archives\n"
+"  -s  No-act. Perform ordering simulation\n"
+"  -y  Assume Yes to all queries and do not prompt\n"
+"  -f  Attempt to continue if the integrity check fails\n"
+"  -m  Attempt to continue if archives are unlocatable\n"
+"  -u  Show a list of upgraded packages as well\n"
+"  -b  Build the source package after fetching it\n"
+"  -c=? Read this configuration file\n"
+"  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+"                       This APT has Super Cow Powers.\n"
+msgstr ""
+
+#: cmdline/apt-sortpkgs.cc:83
+msgid "Unknown package record!"
+msgstr ""
+
+#: cmdline/apt-sortpkgs.cc:147
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+"  -h   This help text\n"
+"  -s   Use source file sorting\n"
+"  -c=? Read this configuration file\n"
+"  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+
+#: cmdline/apt-extracttemplates.cc:95
+#, c-format
+msgid "%s not a valid DEB package."
+msgstr ""
+
+#: cmdline/apt-extracttemplates.cc:229
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+"  -h   This help text\n"
+"  -t   Set the temp dir\n"
+"  -c=? Read this configuration file\n"
+"  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+
+#: cmdline/apt-extracttemplates.cc:297
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr ""

Reply to: