diff options
author | Michael Vogt <mvo@debian.org> | 2010-07-30 12:45:00 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2010-07-30 12:45:00 +0200 |
commit | b5cabd30cc1be1c6c1ca675ceb359bab577c1905 (patch) | |
tree | 2872bb0149a8123c9abb0c80462f9bb151d11d91 /po/km.po | |
parent | 3000cb123abe00418ccc2e388b6f93b76fe5514d (diff) | |
parent | e3326595301fc7bd1ee025a9dbb09ca51a08f5fa (diff) |
* merge of the debian-expermental-ma branch
* debian/control:
- add dependency on zlib-dev for libapt-pkg-dev
* apt-pkg/cacheset.cc:
- [ABI BREAK] add an ErrorType option to CacheSetHelper
* cmdline/apt-cache.cc:
- use Notice instead of Error in the CacheSetHelper messages
for compat reasons. Otherwise tools like sbuild blow up
- return success in show if a virtual package was given
* debian/control:
- remove libcurl3-gnutls-dev alternative as the package is gone
- increase needed version of libcurl4-gnutls-dev to >= 7.19.0
as we use CURLOPT_{ISSUERCERT,CRLFILE} (Closes: #589642)
* apt-pkg/deb/dpkgpm.cc:
- Write architecture information to history file.
- Add to history whether a change was automatic or not.
* apt-pkg/contrib/fileutl.cc:
- Add FileFd::OpenDescriptor() (needed for python-apt's #383617).
* cmdline/apt-get.cc:
- Support large filesystems by using statvfs64() instead of statvfs()
and statfs64() instead of statfs() (Closes: #590513).
* apt-pkg/cdrom.cc:
- Use link() instead of rename() for creating the CD database backup;
otherwise there would be a short time without any database.
* apt-pkg/depcache.cc:
- handle "circular" conflicts for "all" packages correctly
* cmdline/apt-cache.cc:
- be able to omit dependency types in (r)depends (Closes: #319006)
- show in (r)depends the canidate per default instead of newest
- share the (r)depends code instead of codecopy
* apt-pkg/cacheset.cc:
- move them back to the library as they look stable now
- add a 'newest' pseudo target release as in pkg/newest
* apt-pkg/pkgcache.cc:
- prefer non-virtual packages in FindPreferredPkg (Closes: #590041)
* test/integration/*:
- add with bug#590041 testcase a small test "framework"
* apt-pkg/orderlist.cc:
- try to install another or-group member in DepRemove before
breaking the or group (Closes: #590438)
- configure also the replacement before remove by adding Immediate flag
* apt-pkg/contrib/error.{cc,h}
- docstring cleanup
- add inline DumpError() to avoid subtle API break
* apt-pkg/contrib/error.{cc,h}:
- remove constness of va_list parameter to fix build on amd64 and co
Thanks Eric Valette! (Closes: #588610)
* apt-pkg/deb/debmetaindex.cc:
- do not query each architecture for flat file archives
- fix typo preventing display of architecture in Info()
* methods/bzip2.cc:
- add a copycat of the old gzip.cc as we need it for bzip2 and lzma
* debian/rules:
- Make DEB_BUILD_OPTIONS=noopt actually work by passing the right
CXXFLAGS.
* apt-pkg/contrib/fileutl.{h,cc}:
- Add support for reading of gzipped files with the new "ReadOnlyGzip"
OpenMode. (Closes: #188407)
- Link against zlib (in apt-pkg/makefile) and add zlib build dependency.
- [ABI BREAK] This adds a new private member to FileFd, but its
initialization is in the public header file.
* configure.in:
- Check for zlib library and headers.
* apt-pkg/acquire-item.cc, apt-pkg/deb/debindexfile.cc,
apt-pkg/deb/debrecords.cc, apt-pkg/deb/debsrcrecords.h,
cmdline/apt-cache.cc:
- Open Packages, Sources, and Translations indexes in "ReadOnlyGzip" mode.
* apt-pkg/deb/debindexfile.cc:
- If we do not find uncompressed package/source/translation indexes, look
for gzip compressed ones.
* apt-pkg/acquire-item.cc:
- If the Acquire::GzipIndexes option is true and we download a gzipped
index file, keep it as it is (and rename to .gz) instead of
uncompressing it.
* doc/apt.conf.5.xml:
- Document the new Acquire::GzipIndexes option.
* doc/po/apt-doc.pot, doc/po/de.po:
- German translation of new Acquire::GzipIndexes option.
* Add test/test-indexes.sh:
- Test behaviour of index retrieval and usage, in particular with
uncompressed and gzip compressed indexes.
* methods/gzip.cc: With FileFd now being able to read gzipped files, there
is no need for the gzip method any more to spawn an external gzip process.
Rewrite it to use FileFd directly, which makes the code a lot simpler, and
also using less memory and overhead.
* doc/apt.conf.5.xml:
- add and document APT::Cache-{Start,Grow,Limit} options for mmap control
* apt-pkg/contrib/fileutl.cc:
- do not fail von double close()
* cmdline/cacheset.cc:
- doesn't include it in the library for now as it is too volatile
- get the candidate either from an already built depcache
or use the policy which is a bit faster than depcache generation
- get packages by task^ with FromTask()
- only print errors if all tries to get a package by string failed
- factor out code to get a single package FromName()
- check in Grouped* first without modifier interpretation
* cmdline/apt-get.cc:
- use the cachsets in the install commands
- make the specify order of packages irrelevant (Closes: #196021)
* apt-pkg/orderlist.cc:
- untouched packages are never missing
* apt-pkg/packagemanager.cc:
- packages that are not touched doesn't need to be unpacked
* debian/control:
- remove intltool's dependency as it is an ubuntu artefact
* apt-pkg/depcache.cc:
- SetCandidateVer for all pseudo packages
- SetReInstall for the "all" package of a pseudo package
- use the new MatchAgainstConfig for the DefaultRootSetFunc
- always mark the all package if a pseudo package is marked for install
* apt-pkg/contrib/error.{cc,h}:
- complete rewrite but use the same API
- add NOTICE and DEBUG as new types of a message
- add a simple stack handling to be able to delay error handling
* apt-pkg/aptconfiguration.cc:
- show a deprecation notice for APT::Acquire::Translation
* apt-pkg/contrib/configuration.{cc,h}:
- add a wrapper to match strings against configurable regex patterns
* apt-pkg/contrib/fileutl.cc:
- show notice about ignored file instead of being always silent
- add a Dir::Ignore-Files-Silently list option to control the notice
* apt-pkg/policy.h:
- add another round of const& madness as the previous round accidentally
NOT overrides the virtual GetCandidateVer() method (Closes: #587725)
* apt-pkg/pkgcachegen.{cc,h}:
- make the used MMap moveable (and therefore dynamic resizeable) by
applying (some) mad pointer magic (Closes: #195018)
* apt-pkg/deb/dpkgpm.cc:
- make the apt/term.log output unbuffered (thanks to Matt Zimmerman)
* methods/ftp.h:
- Handle different logins on the same server (Closes: #586904).
* apt-pkg/deb/deblistparser.cc:
- Handle architecture wildcards (Closes: #547724).
* apt-pkg/versionmatch.cc:
- Support matching pins by regular expressions or glob() like patterns,
regular expressions have to be put between to slashes; for example,
/.*/.
* apt-pkg/contrib/fileutl.cc:
- Make FileFd replace files atomically in WriteTemp mode (for cache, etc).
* debian/control:
- Set Standards-Version to 3.9.0
* apt-pkg/cachefile.h:
- make pkgPolicy public again, libapt-pkg-perl (and probably
others) get unhappy without that
* merge the remaining Ubuntu change:
- on gpg verification failure warn and restore the last known
good state
- on failure display the IP of the server (useful for servers
that use round robin DNS)
- support Original-Maintainer in RewritePackageOrder
- enable cdrom autodetection via libudev by default
- show message about Vcs in use when apt-get source is run for
packages maintained in a Vcs
- better support transitional packages with mark auto-installed.
when the transitional package is in "oldlibs" the new package
is not marked auto installed (same is true for section
metapackages)
- provide new "deb mirror://archive.foo/mirrors.list sid main"
method expects a list of mirrors (generated on the server e.g.
via geoip) and will use that, including cycle on failure
- write apport crash file on package failure (disabled by default
on debian until apport is available)
- support mirror failure reporting (disabled by default on debian)
* apt-pkg/deb/dpkgpm.cc:
- write Disappeared also to the history.log
- forward manual-installed bit on package disappearance
* apt-pkg/deb/debsystem.cc:
- add better config item for extended_states file
* apt-pkg/pkgcache.h:
- switch {,Install-}Size to unsigned long long
* apt-pkg/depcache.cc:
- do the autoremove mark process also for required packages to handle
these illegally depending on lower priority packages (Closes: #583517)
- try harder to find the other pseudo versions for autoremove multiarch
- correct "Dangerous iterator usage" pointed out by cppcheck
- deal with long long, not with int to remove 2GB Limit (LP: #250909)
- deprecate AddSize with Multiplier as it is unused and switch to
boolean instead to handle the sizes more gracefully.
- switch i{Download,Usr}Size from double to (un)signed long long
* apt-pkg/aptconfiguration.cc:
- remove duplicate architectures in getArchitectures()
* apt-pkg/indexrecords.{cc,h}:
- backport forgotten Valid-Until patch from the obsolete experimental
branch to prevent replay attacks better, thanks to Thomas Viehmann
for the initial patch! (Closes: #499897)
- add a constant Exists check for MetaKeys
* apt-pkg/acquire-item.cc:
- do not try PDiff if it is not listed in the Meta file
- sent Last-Modified header also for Translation files
* apt-pkg/cacheiterator.h:
- let pkgCache::Iterator inherent std::iterator
* ftparchive/writer.h:
- add a virtual destructor to FTWScanner class (for cppcheck)
* apt-pkg/cacheset.{cc,h}:
- add simple wrapper around std::set for cache structures
- move regex magic from apt-get to new FromRegEx method
- move cmdline parsing from apt-cache to new FromCommandLine method
- support special release-modifier 'installed' and 'candidate'
* apt-pkg/contrib/cmdline.cc:
- fix segfault in SaveInConfig caused by writing over char[] sizes
* apt-pkg/pkgcache.cc:
- get the best matching arch package from a group with FindPreferredPkg
* cmdline/apt-cache.cc:
- make the search multiarch compatible by using GrpIterator instead
- use pkgCacheFile and the new CacheSets all over the place
- add --target-release option (Closes: #115520)
- accept pkg/release and pkg=version in show and co. (Closes: #236270)
- accept package versions in the unmet command
* cmdline/apt-get.cc:
- use unsigned long long instead of double to store values it gets
* apt-pkg/cachefile.{cc,h}:
- split Open() into submethods to be able to build only parts
- make the OpProgress optional in the Cache buildprocess
- store also the SourceList we use internally for export
* doc/apt.conf.5.xml:
- document the new Valid-Until related options
* apt-pkg/contrib/strutl.cc:
- split StrToTime() into HTTP1.1 and FTP date parser methods and
use strptime() instead of some self-made scanf mangling
- use the portable timegm shown in his manpage instead of a strange
looking code copycat from wget
* ftparchive/writer.cc:
- add ValidTime option to generate a Valid-Until header in Release file
* apt-pkg/policy.cc:
- get the candidate right for a not-installed pseudo package if
his non-pseudo friend is installed
* apt-pkg/indexcopy.cc:
- move the gpg codecopy to a new method and use it also in methods/gpgv.cc
* cmdline/apt-get.cc:
- rerun dpkg-source in source if --fix-broken is given (Closes: #576752)
- don't suggest held packages as they are installed (Closes: #578135)
- handle multiple --{tar,diff,dsc}-only options correctly
- show at the end of the install process a list of disappeared packages
* cmdline/apt-cache.cc:
- use GroupCount for package names in stats and add a package struct line
* methods/rred.cc:
- use the patchfile modification time instead of the one from the
"old" file - thanks to Philipp Weis for noticing! (Closes: #571541)
* debian/rules:
- remove targets referring to CVS or arch as they are useless
- use $(CURDIR) instead of $(pwd)
- use dpkg-buildflags if available for CXXFLAGS
* README.arch:
- remove the file completely as it has no use nowadays
* apt-pkg/depcache.cc:
- be doublesure that the killer query is empty before starting reinstall
* methods/gpgv.cc:
- remove the keyrings count limit by using vector magic
* contrib/mmap.cc:
- clarify "MMap reached size limit" error message, thanks Ivan Masár!
* doc/apt.ent
- add entities for the current oldstable/stable/testing codenames
* doc/sources.list.5.xml:
- use stable-codename instead of stable in the examples (Closes: #531492)
* doc/apt_preferences.5.xml:
- adapt some examples here to use current codenames as well
- add "NotAutomatic: yes" handling, thanks Osamu Aoki (Closes: #490347)
* debian/libapt-pkg-doc.doc-base.cache:
- remove yet another reference to the removed cache.sgml
* doc/apt-get.8.xml:
- do not say explicit target_release_{name,version,codename}, it should
be clear by itself and 'man' can break lines again (Closes: #566166)
- remove the gnome-apt reference as it is removed from unstable
* apt-pkg/deb/dpkgpm.cc:
- add 'disappear' to the known processing states, thanks Jonathan Nieder
* apt-pkg/packagemanager.h:
- export info about disappeared packages with GetDisappearedPackages()
* methods/http.{cc,h}:
- code cleanup, use enums instead of magic ints
* debian/rules:
- spell out some less known options to reduce manpage consultation-rate
- Use POSIX command substitution: $(<command sequence>)
- Remove EOL whitespace (Closes: #577804)
* apt-pkg/acquire-item.cc:
- Fix pkgAcqFile::Custom600Headers() to always return something.
* apt-pkg/depcache.cc:
- rewrite the pseudo package reinstaller to be more intelligent
in his package choices
* apt-pkg/packagemanager.cc:
- don't try to "unpack" pseudo packages twice
* apt-pkg/contrib/fileutl.cc:
- add a parent-guarded "mkdir -p" as CreateDirectory()
* apt-pkg/acquire.{cc,h}:
- add a delayed constructor with Setup() for success reporting
- check for and create directories in Setup if needed instead of
error out unfriendly in the Constructor (Closes: #523920, #525783)
- optional handle a lock file in Setup()
* apt-pkg/acquire-item.cc:
- Acquire::ForceHash to force method for expected hash
* cmdline/apt-get.cc:
- remove the lock file handling and let Acquire take care of it instead
- display MD5Sum in --print-uris if not forced to use another method
instead of displaying the strongest available (Closes: #576420)
- regex for package names executed on Grp- not PkgIterator
- show non-candidates as fallback for virtual packages (Closes: #578385)
- set also "all" to this version for pseudo packages in TryToChangeVer
* apt-pkg/deb/dpkgpm.cc:
- remove Chroot-Directory from files passed to install commands.
Thanks to Kel Modderman for report & patch! (Closes: #577226)
* ftparchive/writer.cc:
- remove 999 chars Files and Checksums rewrite limit (Closes: #577759)
* cmdline/apt-cache.cc:
- align Installed and Candidate Version in policy so they can be compared
easier, thanks Ralf Gesellensetter for the pointer! (Closes: #578657)
* doc/apt.ent:
- Add a note about APT_CONFIG in the -c description (Closes: #578267)
* doc/po/de.po:
- correct typos in german apt_preferences manpage, thanks Chris Leick!
* apt-pkg/sourcelist.cc:
- be less strict and accept [option=value] as well
* apt-pkg/contrib/configuration.cc:
- error out if #clear directive has no argument
* doc/files.sgml:
- sync documentation with status quo, regarding files/directories in
use, extended_states and uri schemes.
* doc/cache.sgml:
- drop the file in favor of inplace documentation with doxygen
* apt-pkg/pkgcache.h:
- enhance the Groups ABI by providing a ID as the other structs does
- check also the size of the Group struct then checking for the others
* cmdline/apt-get.cc:
- replace backticks with single quotes around fix-broken command
in the broken packages message. (Closes: #577168)
* dselect/install:
- modernize if-statements not to use 'x' (Closes: #577117)
- replace backticks with POSIX $() (Closes: #577116)
* cmdline/apt-get.cc:
- fix crash when pkg.VersionList() is empty
- install html doxygen in libapt-pkg-doc
* debian/control:
- build-depend on doxygen
* apt-pkg/contrib/weakptr.h:
- add a class WeakPointable which allows one to register weak pointers to
an object which will be set to NULL when the object is deallocated.
* [ABI break] apt-pkg/acquire{-worker,-item,}.h:
- subclass pkgAcquire::{Worker,Item,ItemDesc} from WeakPointable.
* apt-pkg/pkgcache.cc:
- Merge fix from David to correct handling in single-arch environments.
* cmdline/apt-cache.cc:
- Add a showauto command to apt-cache.
* cmdline/apt-get.cc:
- Add apt-get markauto and unmarkauto commands.
* [BREAK] merge MultiArch-ABI. We don't support MultiArch,
but we support the usage of the new ABI so libapt users
can start to prepare for MultiArch (Closes: #536029)
* Ignore :qualifiers after package name in build dependencies
in the library by default, but try to honour them in apt-get
as we have some sort of MultiArch support ready (Closes: #558103)
* add translation of the manpages to PT (portuguese)
Thanks to Américo Monteiro!
* Switch to dpkg-source 3.0 (native) format
* apt-pkg/depcache.cc:
- remove Auto-Installed information from extended_states
together with the package itself (Closes: #572364)
* cmdline/apt-mark:
- don't crash if no arguments are given (Closes: #570962)
* debian/control:
- remove some years old and obsolete Replaces
- add automake/conf build-depends/conflicts as recommend by
the autotools-dev README (Closes: #572615)
* apt-pkg/contrib/mmap.{h,cc}:
- add char[] fallback for filesystems without shared writable
mmap() like JFFS2. Thanks to Marius Vollmer for writing
and to Loïc Minier for pointing to the patch! (Closes: #314334)
* doc/apt_preferences.5.xml:
- fix two typos and be more verbose in the novice warning.
Thanks to Osamu Aoki for pointing it out! (Closes: #567669)
- fix a=sid vs. n=sid typo, thanks Ansgar Burchardt!
- origin can be used to match a hostname (Closes: #352667)
- remove wrong pin-priority is optional remark (Closes: #574944)
* apt-pkg/deb/dpkgpm.cc:
- fix error message construction in OpenLog()
- if available store the Commandline in the history
* cmdline/apt-get.cc:
- add a --only-upgrade flag to install command (Closes: #572259)
- fix memory leaks in error conditions in DoSource()
- try version match in FindSrc first exact than fuzzy (LP: #551178)
* apt-pkg/contrib/cmndline.cc:
- save Commandline in Commandline::AsString for logging
* apt-pkg/deb/debversion.cc:
- consider absent of debian revision equivalent to 0 (Closes: #573592)
* doc/makefile, doc/*:
- generate subdirectories for building the manpages in on the fly
depending on the po files we have.
* apt-pkg/pkgcachegen.cc:
- merge versions correctly even if multiple different versions
with the same version number are available.
Thanks to Magnus Holmgren for the patch! (Closes: #351056)
* ftparchive/writer.cc:
- write LongDescriptions if they shouldn't be included in Packages
file into i18n/Translation-en by default.
* doc/po/de.po:
- correct a few typos in the german manpage translation.
Thanks to Chris Leick and Georg Koppen! (Closes: #574962)
* apt-pkg/contrib/strutl.cc:
- convert all toupper calls to tolower_ascii for a little speedup
* apt-pkg/contrib/strutl.cc:
- always escape '%' (LP: #130289) (Closes: #500560)
- unescape '%' sequence only if followed by 2 hex digit
- username/password are urlencoded in proxy string (RFC 3986)
Diffstat (limited to 'po/km.po')
-rw-r--r-- | po/km.po | 833 |
1 files changed, 456 insertions, 377 deletions
@@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-11 15:17+0100\n" +"POT-Creation-Date: 2010-05-04 13:37+0200\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n" "Language-Team: Khmer <support@khmeros.info>\n" @@ -24,9 +24,10 @@ msgstr "" msgid "Package %s version %s has an unmet dep:\n" msgstr "កញ្ចប់ %s កំណែ %s មានភាពអាស្រ័យមិនត្រូវគ្នា ៖\n" -#: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 -#: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 +#: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:646 +#: cmdline/apt-cache.cc:799 cmdline/apt-cache.cc:1023 +#: cmdline/apt-cache.cc:1428 cmdline/apt-cache.cc:1523 +#: cmdline/apt-cache.cc:1606 #, c-format msgid "Unable to locate package %s" msgstr "មិនអាចកំណត់ទីតាំងកញ្ចប់ %s បានឡើយ" @@ -35,129 +36,132 @@ msgstr "មិនអាចកំណត់ទីតាំងកញ្ msgid "Total package names: " msgstr "ឈ្មោះកញ្ចប់សរុប ៖ " -#: cmdline/apt-cache.cc:285 +#: cmdline/apt-cache.cc:247 +#, fuzzy +msgid "Total package structures: " +msgstr "ឈ្មោះកញ្ចប់សរុប ៖ " + +#: cmdline/apt-cache.cc:287 msgid " Normal packages: " msgstr " កញ្ចប់ធម្មតា ៖ " -#: cmdline/apt-cache.cc:286 +#: cmdline/apt-cache.cc:288 msgid " Pure virtual packages: " msgstr " កញ្ចប់និម្មិតសុទ្ធ ៖ " -#: cmdline/apt-cache.cc:287 +#: cmdline/apt-cache.cc:289 msgid " Single virtual packages: " msgstr " កញ្ចប់និម្មិតតែមួយ ៖ " -#: cmdline/apt-cache.cc:288 +#: cmdline/apt-cache.cc:290 msgid " Mixed virtual packages: " msgstr " កញ្ចប់និម្មិតលាយ ៖ " -#: cmdline/apt-cache.cc:289 +#: cmdline/apt-cache.cc:291 msgid " Missing: " msgstr " បាត់បង់ ៖ " -#: cmdline/apt-cache.cc:291 +#: cmdline/apt-cache.cc:293 msgid "Total distinct versions: " msgstr "កំណែផ្សេងៗសរុប ៖ " -#: cmdline/apt-cache.cc:293 +#: cmdline/apt-cache.cc:295 #, fuzzy msgid "Total distinct descriptions: " msgstr "កំណែផ្សេងៗសរុប ៖ " -#: cmdline/apt-cache.cc:295 +#: cmdline/apt-cache.cc:297 msgid "Total dependencies: " msgstr "ភាពអាស្រ័យសរុប ៖ " -#: cmdline/apt-cache.cc:298 +#: cmdline/apt-cache.cc:300 msgid "Total ver/file relations: " msgstr "ទំនាក់ទំនង កំណែ/ឯកសារសរុប ៖ " -#: cmdline/apt-cache.cc:300 +#: cmdline/apt-cache.cc:302 #, fuzzy msgid "Total Desc/File relations: " msgstr "ទំនាក់ទំនង កំណែ/ឯកសារសរុប ៖ " -#: cmdline/apt-cache.cc:302 +#: cmdline/apt-cache.cc:304 msgid "Total Provides mappings: " msgstr "ការផ្គូរផ្គងការផ្ដល់សរុប ៖ " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:316 msgid "Total globbed strings: " msgstr "ខ្សែអក្សរសរុប ៖ " -#: cmdline/apt-cache.cc:328 +#: cmdline/apt-cache.cc:330 msgid "Total dependency version space: " msgstr "ទំហំកំណែភាពអាស្រ័យសរុប ៖ " -#: cmdline/apt-cache.cc:333 +#: cmdline/apt-cache.cc:335 msgid "Total slack space: " msgstr "ទំហំ slack សរុប ៖" -#: cmdline/apt-cache.cc:341 +#: cmdline/apt-cache.cc:343 msgid "Total space accounted for: " msgstr "ទំហំសរុបដែលទុកសម្រាប់ ៖ " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 +#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1223 #, c-format msgid "Package file %s is out of sync." msgstr "ឯកសារកញ្ចប់ %s នៅខាងក្រៅការធ្វើសមកាលកម្ម ។" -#: cmdline/apt-cache.cc:1297 +#: cmdline/apt-cache.cc:1299 msgid "You must give exactly one pattern" msgstr "អ្នកត្រូវតែផ្ដល់លំនាំមួយដែលពិតប្រាកដ" -#: cmdline/apt-cache.cc:1451 +#: cmdline/apt-cache.cc:1457 cmdline/apt-cache.cc:1529 msgid "No packages found" msgstr "រកកញ្ចប់មិនឃើញ" -#: cmdline/apt-cache.cc:1528 +#: cmdline/apt-cache.cc:1548 msgid "Package files:" msgstr "ឯកសារកញ្ចប់ ៖" -#: cmdline/apt-cache.cc:1535 cmdline/apt-cache.cc:1622 +#: cmdline/apt-cache.cc:1555 cmdline/apt-cache.cc:1657 msgid "Cache is out of sync, can't x-ref a package file" msgstr "ឃ្លាំងសម្ងាត់ឋិតនៅក្រៅការធ្វើសមកាលកម្ម ដែលមិនអាច x-ref ឯកសារកញ្ចប់បានទេ" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1549 +#: cmdline/apt-cache.cc:1569 msgid "Pinned packages:" msgstr "កញ្ចប់ដែលបានខ្ទាស់ ៖" -#: cmdline/apt-cache.cc:1561 cmdline/apt-cache.cc:1602 +#: cmdline/apt-cache.cc:1581 cmdline/apt-cache.cc:1637 msgid "(not found)" msgstr "(រកមិនឃើញ)" -#. Installed version -#: cmdline/apt-cache.cc:1582 +#: cmdline/apt-cache.cc:1590 msgid " Installed: " msgstr " បានដំឡើង ៖ " -#: cmdline/apt-cache.cc:1584 cmdline/apt-cache.cc:1592 -msgid "(none)" -msgstr "(គ្មាន)" - -#. Candidate Version -#: cmdline/apt-cache.cc:1589 +#: cmdline/apt-cache.cc:1591 msgid " Candidate: " msgstr " សាកល្បង ៖ " -#: cmdline/apt-cache.cc:1599 +#: cmdline/apt-cache.cc:1619 cmdline/apt-cache.cc:1627 +msgid "(none)" +msgstr "(គ្មាន)" + +#: cmdline/apt-cache.cc:1634 msgid " Package pin: " msgstr " ខ្ទាស់កញ្ចប់ ៖ " #. Show the priority tables -#: cmdline/apt-cache.cc:1608 +#: cmdline/apt-cache.cc:1643 msgid " Version table:" msgstr " តារាងកំណែ ៖" -#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2675 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1754 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 +#: cmdline/apt-get.cc:2729 cmdline/apt-sortpkgs.cc:144 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s សម្រាប់ %s %s បានចងក្រងនៅលើ%s %s\n" -#: cmdline/apt-cache.cc:1725 +#: cmdline/apt-cache.cc:1761 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -241,7 +245,12 @@ msgstr "សូមផ្ដល់ឈ្មោះឲ្យថាស msgid "Please insert a Disc in the drive and press enter" msgstr "សូមបញ្ចូលថាសក្នុងដ្រាយហើយចុចបញ្ចូល" -#: cmdline/apt-cdrom.cc:114 +#: cmdline/apt-cdrom.cc:127 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "បរាជ័យក្នុងការប្តូរឈ្មោះ %s ទៅ %s" + +#: cmdline/apt-cdrom.cc:162 msgid "Repeat this process for the rest of the CDs in your set." msgstr "ធ្វើដំណើរការនេះម្តងទៀត សម្រាប់ស៊ីឌីទាំងអស់ក្នុងសំណុំរបស់អ្នក ។" @@ -306,7 +315,7 @@ msgstr "" " -c=? អានឯកសារការកំណត់រចនាស្ព័ន្ធនេះ\n" " -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត ឧ. eg -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:863 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:1030 #, c-format msgid "Unable to write to %s" msgstr "មិនអាចសរសេរទៅ %s" @@ -315,31 +324,31 @@ msgstr "មិនអាចសរសេរទៅ %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "មិនអាចទទួលយកកំណែ debconf ។ តើ debconf បានដំឡើងឬ ?" -#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338 +#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 msgid "Package extension list is too long" msgstr "បញ្ជីផ្នែកបន្ថែមកញ្ចប់វែងពេក" -#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180 -#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253 -#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 +#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 +#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 #, c-format msgid "Error processing directory %s" msgstr "កំហុសដំណើរការថត %s" -#: ftparchive/apt-ftparchive.cc:251 +#: ftparchive/apt-ftparchive.cc:258 msgid "Source extension list is too long" msgstr "បញ្ជីផ្នែកបន្ថែមប្រភពវែងពេក" -#: ftparchive/apt-ftparchive.cc:368 +#: ftparchive/apt-ftparchive.cc:375 msgid "Error writing header to contents file" msgstr "កំហុសសរសេរបឋមកថាទៅឯកសារមាតិកា" -#: ftparchive/apt-ftparchive.cc:398 +#: ftparchive/apt-ftparchive.cc:405 #, c-format msgid "Error processing contents %s" msgstr "កំហុសដំណើរការមាតិកា %s" -#: ftparchive/apt-ftparchive.cc:553 +#: ftparchive/apt-ftparchive.cc:590 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -420,11 +429,11 @@ msgstr "" " -c=? អានឯកសារការកំណត់រចនាសម្ព័ន្ធនេះ\n" " -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត" -#: ftparchive/apt-ftparchive.cc:759 +#: ftparchive/apt-ftparchive.cc:796 msgid "No selections matched" msgstr "គ្មានការជ្រើសដែលផ្គួផ្គង" -#: ftparchive/apt-ftparchive.cc:832 +#: ftparchive/apt-ftparchive.cc:874 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "ឯកសារមួយចំនួនបាត់បងពីក្រុមឯកសារកញ្ចប់ `%s'" @@ -467,87 +476,87 @@ msgstr "ប័ណ្ណសារគ្មានកំណត់ត្រ msgid "Unable to get a cursor" msgstr "មិនអាចយកទស្សន៍ទ្រនិច" -#: ftparchive/writer.cc:76 +#: ftparchive/writer.cc:73 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: មិនអាចអានថត %s បានឡើយ\n" -#: ftparchive/writer.cc:81 +#: ftparchive/writer.cc:78 #, c-format msgid "W: Unable to stat %s\n" msgstr "W ៖ មិនអាចថ្លែង %s\n" -#: ftparchive/writer.cc:132 +#: ftparchive/writer.cc:134 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:134 +#: ftparchive/writer.cc:136 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:141 +#: ftparchive/writer.cc:143 msgid "E: Errors apply to file " msgstr "E: កំហុសអនុវត្តលើឯកសារ" -#: ftparchive/writer.cc:158 ftparchive/writer.cc:188 +#: ftparchive/writer.cc:161 ftparchive/writer.cc:193 #, c-format msgid "Failed to resolve %s" msgstr "បរាជ័យក្នុងការដោះស្រាយ %s" -#: ftparchive/writer.cc:170 +#: ftparchive/writer.cc:174 msgid "Tree walking failed" msgstr "មែកធាង បានបរាជ័យ" -#: ftparchive/writer.cc:195 +#: ftparchive/writer.cc:201 #, c-format msgid "Failed to open %s" msgstr "បរាជ័យក្នុងការបើក %s" -#: ftparchive/writer.cc:254 +#: ftparchive/writer.cc:260 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:262 +#: ftparchive/writer.cc:268 #, c-format msgid "Failed to readlink %s" msgstr "បានបរាជ័យក្នុងការអានតំណ %s" -#: ftparchive/writer.cc:266 +#: ftparchive/writer.cc:272 #, c-format msgid "Failed to unlink %s" msgstr "បានបរាជ័យក្នុងការផ្ដាច់ %s" -#: ftparchive/writer.cc:273 +#: ftparchive/writer.cc:279 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** បានបរាជ័យក្នុងការត %s ទៅ %s" -#: ftparchive/writer.cc:283 +#: ftparchive/writer.cc:289 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink កំណត់នៃការវាយ %sB ។\n" -#: ftparchive/writer.cc:389 +#: ftparchive/writer.cc:393 msgid "Archive had no package field" msgstr "ប័ណ្ណសារគ្មានវាលកញ្ចប់" -#: ftparchive/writer.cc:397 ftparchive/writer.cc:628 +#: ftparchive/writer.cc:401 ftparchive/writer.cc:688 #, c-format msgid " %s has no override entry\n" msgstr " %s គ្មានធាតុធាតុបញ្ចូលបដិសេធឡើយ\n" -#: ftparchive/writer.cc:458 ftparchive/writer.cc:716 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " អ្នកថែទាំ %s គឺ %s មិនមែន %s\n" -#: ftparchive/writer.cc:638 +#: ftparchive/writer.cc:698 #, c-format msgid " %s has no source override entry\n" msgstr " %s គ្មានធាតុបដិសេធប្រភព\n" -#: ftparchive/writer.cc:642 +#: ftparchive/writer.cc:702 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s គ្មានធាតុបដិសេធគោលពីរដែរ\n" @@ -651,7 +660,7 @@ msgstr "បរាជ័យក្នុងការប្តូរឈ msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1740 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1782 #, c-format msgid "Regex compilation error - %s" msgstr "Regex កំហុសការចងក្រង - %s" @@ -690,36 +699,36 @@ msgstr "ប៉ុន្តែ វានឹងមិនត្រូវ msgid " or" msgstr " ឬ" -#: cmdline/apt-get.cc:382 +#: cmdline/apt-get.cc:384 msgid "The following NEW packages will be installed:" msgstr "កញ្ចប់ថ្មីខាងក្រោមនឹងត្រូវបានដំឡើង ៖" -#: cmdline/apt-get.cc:408 +#: cmdline/apt-get.cc:412 msgid "The following packages will be REMOVED:" msgstr "កញ្ចប់ខាងក្រោមនឹងត្រូវបានយកចេញ ៖" -#: cmdline/apt-get.cc:430 +#: cmdline/apt-get.cc:434 msgid "The following packages have been kept back:" msgstr "កញ្ចប់ខាងក្រោមត្រូវបានយកត្រឡប់មកវិញ ៖" -#: cmdline/apt-get.cc:451 +#: cmdline/apt-get.cc:457 msgid "The following packages will be upgraded:" msgstr "កញ្ចប់ខាងក្រោមនឹងត្រូវបានធ្វើឲ្យប្រសើឡើង ៖" -#: cmdline/apt-get.cc:472 +#: cmdline/apt-get.cc:480 msgid "The following packages will be DOWNGRADED:" msgstr "កញ្ចប់ខាងក្រោមនឹងត្រូវបានបន្ទាប ៖" -#: cmdline/apt-get.cc:492 +#: cmdline/apt-get.cc:500 msgid "The following held packages will be changed:" msgstr "កញ្ចប់រង់ចាំខាងក្រោមនឹងត្រូវបានផ្លាស់ប្តូរ ៖" -#: cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:553 #, c-format msgid "%s (due to %s) " msgstr "%s (ដោយសារតែ %s) " -#: cmdline/apt-get.cc:553 +#: cmdline/apt-get.cc:561 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -727,144 +736,140 @@ msgstr "" "ព្រមាន ៖ កញ្ចប់ដែលចាំបាច់ខាងក្រោមនឹងត្រូវបានយកចេញ ។\n" "ការយកចេញនេះមិនត្រូវបានធ្វើទេលុះត្រាតែអ្នកដឹងថាអ្នកកំពុងធ្វើអ្វីឲ្យប្រាកដ !" -#: cmdline/apt-get.cc:584 +#: cmdline/apt-get.cc:595 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu ត្រូវបានធ្វើឲ្យប្រសើរ %lu ត្រូវបានដំឡើងថ្មី " -#: cmdline/apt-get.cc:588 +#: cmdline/apt-get.cc:599 #, c-format msgid "%lu reinstalled, " msgstr "%lu ត្រូវបានដំឡើងឡើងវិញ " -#: cmdline/apt-get.cc:590 +#: cmdline/apt-get.cc:601 #, c-format msgid "%lu downgraded, " msgstr "%lu ត្រូវបានបន្ទាប់ " -#: cmdline/apt-get.cc:592 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu ដែលត្រូវយកចេញ ហើយ %lu មិនបានធ្វើឲ្យប្រសើរឡើយ ។\n" -#: cmdline/apt-get.cc:596 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu មិនបានដំឡើង ឬ យកចេញបានគ្រប់ជ្រុងជ្រោយឡើយ ។\n" -#: cmdline/apt-get.cc:669 +#: cmdline/apt-get.cc:680 msgid "Correcting dependencies..." msgstr "កំពុងកែភាពអាស្រ័យ..." -#: cmdline/apt-get.cc:672 +#: cmdline/apt-get.cc:683 msgid " failed." msgstr " បានបរាជ័យ ។" -#: cmdline/apt-get.cc:675 +#: cmdline/apt-get.cc:686 msgid "Unable to correct dependencies" msgstr "មិនអាចកែភាពអាស្រ័យបានឡើយ" -#: cmdline/apt-get.cc:678 +#: cmdline/apt-get.cc:689 msgid "Unable to minimize the upgrade set" msgstr "មិនអាចបង្រួមការកំណត់ភាពប្រសើរបានឡើយ" -#: cmdline/apt-get.cc:680 +#: cmdline/apt-get.cc:691 msgid " Done" msgstr " ធ្វើរួច" -#: cmdline/apt-get.cc:684 -msgid "You might want to run `apt-get -f install' to correct these." -msgstr "អ្នកប្រហែលជាចង់រត់ `apt-get -f install' ដើម្បីកែវាទាំងនេះហើយ ។" +#: cmdline/apt-get.cc:695 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "អ្នកប្រហែលជាចង់រត់ 'apt-get -f install' ដើម្បីកែវាទាំងនេះហើយ ។" -#: cmdline/apt-get.cc:687 +#: cmdline/apt-get.cc:698 msgid "Unmet dependencies. Try using -f." msgstr "ភាពអាស្រ័យដែលខុសគ្នា ។ ព្យាយាមការប្រើ -f ។" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:723 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ព្រមាន ៖ មិនអាចធ្វើការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់ខាងក្រោមបានឡើយ !" -#: cmdline/apt-get.cc:716 +#: cmdline/apt-get.cc:727 msgid "Authentication warning overridden.\n" msgstr "បានបដិសេធការព្រមានការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ ។\n" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:734 msgid "Install these packages without verification [y/N]? " msgstr "ដំឡើងកញ្ចប់ទាំងនេះ ដោយគ្មានការពិនិត្យបញ្ជាក់ [y/N] ? " -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:736 msgid "Some packages could not be authenticated" msgstr "មិនអាចផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់មួយចំនួនបានឡើយ" -#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:890 +#: cmdline/apt-get.cc:745 cmdline/apt-get.cc:900 msgid "There are problems and -y was used without --force-yes" msgstr "មានបញ្ហា ហើយ -y ត្រូវបានប្រើដោយគ្មាន --force-yes" -#: cmdline/apt-get.cc:775 +#: cmdline/apt-get.cc:786 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "កំហុសខាងក្នុង កញ្ចប់ដំឡើងត្រូវបានហៅជាមួយកញ្ចប់ដែលខូច !" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:795 msgid "Packages need to be removed but remove is disabled." msgstr "កញ្ចប់ ត្រូវការឲ្យយកចេញ ប៉ុន្តែមិនអនុញ្ញាតឲ្យយកចេញឡើយ ។" -#: cmdline/apt-get.cc:795 +#: cmdline/apt-get.cc:806 msgid "Internal error, Ordering didn't finish" msgstr "កំហុសខាងក្នុង ការរៀបតាមលំដាប់មិនបានបញ្ចប់ឡើយ" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2082 cmdline/apt-get.cc:2115 -msgid "Unable to lock the download directory" -msgstr "មិនអាចចាក់សោថតទាញយកបានឡើយ" - -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2163 cmdline/apt-get.cc:2416 +#: cmdline/apt-get.cc:831 cmdline/apt-get.cc:2210 cmdline/apt-get.cc:2469 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "មិនអាចអានបញ្ជីប្រភពបានឡើយ ។" -#: cmdline/apt-get.cc:836 +#: cmdline/apt-get.cc:846 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "យី អីក៏ចម្លែងម្លេះ.. ទំហំមិនដូចគ្នាឡើយ ។ សូមផ្ញើអ៊ីមែលទៅ apt@packages.debian.org" -#: cmdline/apt-get.cc:841 +#: cmdline/apt-get.cc:851 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "ត្រូវការយក %sB/%sB នៃប័ណ្ណសារ ។\n" -#: cmdline/apt-get.cc:844 +#: cmdline/apt-get.cc:854 #, c-format msgid "Need to get %sB of archives.\n" msgstr "ត្រូវការយក %sB នៃប័ណ្ណសារ ។\n" -#: cmdline/apt-get.cc:849 +#: cmdline/apt-get.cc:859 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "បន្ទាប់ពីពន្លា %sB នៃការបន្ថែមទំហំថាសត្រូវបានប្រើ ។\n" -#: cmdline/apt-get.cc:852 +#: cmdline/apt-get.cc:862 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "បន្ទាប់ពីពន្លា %sB ទំហំថាសនឹងទំនេរ ។ \n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:870 cmdline/apt-get.cc:2259 -#: cmdline/apt-get.cc:2262 +#: cmdline/apt-get.cc:877 cmdline/apt-get.cc:880 cmdline/apt-get.cc:2308 +#: cmdline/apt-get.cc:2311 #, c-format msgid "Couldn't determine free space in %s" msgstr "មិនអាចកំណត់ទំហំទំនេរក្នុង %s បានឡើយ" -#: cmdline/apt-get.cc:880 +#: cmdline/apt-get.cc:890 #, c-format msgid "You don't have enough free space in %s." msgstr "អ្នកគ្មានទំហំទំនេរគ្រប់គ្រាន់ក្នុង %s ឡើយ ។" -#: cmdline/apt-get.cc:896 cmdline/apt-get.cc:916 +#: cmdline/apt-get.cc:906 cmdline/apt-get.cc:926 msgid "Trivial Only specified but this is not a trivial operation." msgstr "បានបញ្ជាក់តែប្រតិបត្តិការដែលមិនសំខាន់ប៉ុណ្ណោះ ប៉ុន្តែនេះមិនមែនជាប្រតិបត្តិការមិនសំខាន់នោះទេ ។" -#: cmdline/apt-get.cc:898 +#: cmdline/apt-get.cc:908 msgid "Yes, do as I say!" msgstr "បាទ/ចាស ធ្វើដូចដែលខ្ញុំនិយាយ !" -#: cmdline/apt-get.cc:900 +#: cmdline/apt-get.cc:910 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -875,28 +880,28 @@ msgstr "" "ដើម្បីបន្ត វាយក្នុងឃ្លា '%s'\n" " ?] " -#: cmdline/apt-get.cc:906 cmdline/apt-get.cc:925 +#: cmdline/apt-get.cc:916 cmdline/apt-get.cc:935 msgid "Abort." msgstr "បោះបង់ ។" -#: cmdline/apt-get.cc:921 +#: cmdline/apt-get.cc:931 msgid "Do you want to continue [Y/n]? " msgstr "តើអ្នកចង់បន្តឬ [បាទ ចាស/ទេ] ? " -#: cmdline/apt-get.cc:993 cmdline/apt-get.cc:2313 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2364 apt-pkg/algorithms.cc:1435 #, c-format msgid "Failed to fetch %s %s\n" msgstr "បរាជ័យក្នុងការទៅប្រមូលយក %s %s\n" -#: cmdline/apt-get.cc:1011 +#: cmdline/apt-get.cc:1021 msgid "Some files failed to download" msgstr "ឯកសារមួយចំនួនបានបរាជ័យក្នុងការទាញយក" -#: cmdline/apt-get.cc:1012 cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1022 cmdline/apt-get.cc:2373 msgid "Download complete and in download only mode" msgstr "បានបញ្ចប់ការទាញយក ហើយតែក្នុងរបៀបទាញយកប៉ុណ្ណោះ" -#: cmdline/apt-get.cc:1018 +#: cmdline/apt-get.cc:1028 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -904,47 +909,57 @@ msgstr "" "អនុញ្ញាតឲ្យទៅប្រមូលយកប័ណ្ណសារមួយចំនួន ប្រហែលជារត់ភាពទាន់សម័យ apt-get ឬ ព្យាយាមប្រើជាមួយ --" "fix- ដែលបាត់ឬ់ ?" -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1032 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix- ដែលបាត់ និង ស្វបមេឌៀដែលមិនបានគាំទ្រនៅពេលបច្ចុប្បន្ន" -#: cmdline/apt-get.cc:1027 +#: cmdline/apt-get.cc:1037 msgid "Unable to correct missing packages." msgstr "មិនអាចកែកញ្ចប់ដែលបាត់បង់បានឡើយ ។" -#: cmdline/apt-get.cc:1028 +#: cmdline/apt-get.cc:1038 msgid "Aborting install." msgstr "កំពុងបោះបង់ការដំឡើង ។" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1096 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "ចំណាំ កំពុងជ្រើស %s ជំនួស %s\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1107 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "កំពុងរំលង %s វាបានដំឡើងរួចរាល់ ហើយភាពធ្វើឲ្យប្រសើរមិនទាន់កំណត់ ។\n" -#: cmdline/apt-get.cc:1115 +#: cmdline/apt-get.cc:1117 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "កំពុងរំលង %s វាបានដំឡើងរួចរាល់ ហើយភាពធ្វើឲ្យប្រសើរមិនទាន់កំណត់ ។\n" + +#: cmdline/apt-get.cc:1135 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "មិនទាន់បានដំឡើងកញ្ចប់ %s ទេ ដូច្នេះ មិនបានយកចេញឡើយ \n" -#: cmdline/apt-get.cc:1126 +#: cmdline/apt-get.cc:1146 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "កញ្ចប់ %s ជាកញ្ចប់និម្មិតដែលបានផ្តល់ដោយ ៖\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1159 msgid " [Installed]" msgstr " [បានដំឡើង]" -#: cmdline/apt-get.cc:1143 +#: cmdline/apt-get.cc:1168 +#, fuzzy +msgid " [Not candidate version]" +msgstr "កំណែសាកល្បង" + +#: cmdline/apt-get.cc:1170 msgid "You should explicitly select one to install." msgstr "អ្នកគួរតែជ្រើសយកមួយឲ្យច្បាស់ដើម្បីដំឡើង ។" -#: cmdline/apt-get.cc:1148 +#: cmdline/apt-get.cc:1175 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -955,85 +970,87 @@ msgstr "" "វាមានន័យថាបាត់កញ្ចប់ គេលែងប្រើ ឬ\n" "អាចរកបានពីប្រភពផ្សេងទៀត\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1194 msgid "However the following packages replace it:" msgstr "ទោះយ៉ាងណាក៏ដោយ កញ្ចប់ខាងក្រោមជំនួសវា ៖" -#: cmdline/apt-get.cc:1170 +#: cmdline/apt-get.cc:1197 #, c-format msgid "Package %s has no installation candidate" msgstr "កញ្ចប់ %s មិនមានការដំឡើងសាកល្បងឡើយ" -#: cmdline/apt-get.cc:1190 +#: cmdline/apt-get.cc:1217 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទេ វាមិនអាចត្រូវបានទាញយកបានឡើយ ។\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1225 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ជាកំណែដែលថ្មីបំផុតរួចទៅហើយ ។\n" -#: cmdline/apt-get.cc:1227 +#: cmdline/apt-get.cc:1254 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "រកមិនឃើញការចេញផ្សាយ '%s' សម្រាប់ '%s' ឡើយ" -#: cmdline/apt-get.cc:1229 +#: cmdline/apt-get.cc:1256 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "រកមិនឃើញកំណែ '%s' សម្រាប់ '%s'" -#: cmdline/apt-get.cc:1235 +#: cmdline/apt-get.cc:1262 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "បានជ្រើសកំណែ %s (%s) សម្រាប់ %s\n" -#: cmdline/apt-get.cc:1321 +#: cmdline/apt-get.cc:1363 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1352 +#: cmdline/apt-get.cc:1395 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "មិនអាចថ្លែង បញ្ជីកញ្ចប់ប្រភពចប់ បានឡើយ %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1433 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1405 +#: cmdline/apt-get.cc:1449 msgid "The update command takes no arguments" msgstr "ពាក្យបញ្ជាដែលធ្វើឲ្យទាន់សម័យគ្មានអាគុយម៉ង់ទេ" -#: cmdline/apt-get.cc:1418 -msgid "Unable to lock the list directory" -msgstr "មិនអាចចាក់សោថតបញ្ជីបានឡើយ" - -#: cmdline/apt-get.cc:1474 +#: cmdline/apt-get.cc:1514 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1523 +#: cmdline/apt-get.cc:1562 #, fuzzy msgid "" +"The following package is automatically installed and is no longer required:" +msgid_plural "" "The following packages were automatically installed and are no longer " "required:" -msgstr "កញ្ចប់ថ្មីខាងក្រោមនឹងត្រូវបានដំឡើង ៖" +msgstr[0] "កញ្ចប់ថ្មីខាងក្រោមនឹងត្រូវបានដំឡើង ៖" +msgstr[1] "កញ្ចប់ថ្មីខាងក្រោមនឹងត្រូវបានដំឡើង ៖" -#: cmdline/apt-get.cc:1525 +#: cmdline/apt-get.cc:1566 #, fuzzy, c-format -msgid "%lu packages were automatically installed and are no longer required.\n" -msgstr "កញ្ចប់ថ្មីខាងក្រោមនឹងត្រូវបានដំឡើង ៖" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "កញ្ចប់ថ្មីខាងក្រោមនឹងត្រូវបានដំឡើង ៖" +msgstr[1] "កញ្ចប់ថ្មីខាងក្រោមនឹងត្រូវបានដំឡើង ៖" -#: cmdline/apt-get.cc:1526 +#: cmdline/apt-get.cc:1568 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1531 +#: cmdline/apt-get.cc:1573 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1049,51 +1066,51 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1534 cmdline/apt-get.cc:1824 +#: cmdline/apt-get.cc:1576 cmdline/apt-get.cc:1871 msgid "The following information may help to resolve the situation:" msgstr "ព័ត៌មានដូចតទៅនេះ អាចជួយដោះស្រាយស្ថានភាពបាន ៖" -#: cmdline/apt-get.cc:1538 +#: cmdline/apt-get.cc:1580 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "កំហុសខាងក្នុង អ្នកដោះស្រាយបញ្ហាបានធ្វើឲ្យខូចឧបករណ៍" -#: cmdline/apt-get.cc:1557 +#: cmdline/apt-get.cc:1599 msgid "Internal error, AllUpgrade broke stuff" msgstr "កំហុសខាងក្នុង ការធ្វើឲ្យប្រសើរទាំងអស់បានធ្វើឲ្យឧបករណ៍ខូច" -#: cmdline/apt-get.cc:1612 +#: cmdline/apt-get.cc:1654 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "មិនអាចរកកញ្ចប់ %s បានទេ" -#: cmdline/apt-get.cc:1727 cmdline/apt-get.cc:1763 +#: cmdline/apt-get.cc:1769 cmdline/apt-get.cc:1808 #, c-format msgid "Couldn't find package %s" msgstr "មិនអាចរកកញ្ចប់ %s បានទេ" -#: cmdline/apt-get.cc:1750 +#: cmdline/apt-get.cc:1795 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "ចំណាំ កំពុងជ្រើស %s សម្រាប់ regex '%s'\n" -#: cmdline/apt-get.cc:1781 +#: cmdline/apt-get.cc:1828 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ប៉ុន្តែ %s នឹងត្រូវបានដំឡើង" -#: cmdline/apt-get.cc:1794 -msgid "You might want to run `apt-get -f install' to correct these:" -msgstr "អ្នកប្រហែលជាចង់រត់ `apt-get -f install' ដើម្បីកែពួកវាទាំងនេះ ៖" +#: cmdline/apt-get.cc:1841 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "អ្នកប្រហែលជាចង់រត់ 'apt-get -f install' ដើម្បីកែពួកវាទាំងនេះ ៖" -#: cmdline/apt-get.cc:1797 +#: cmdline/apt-get.cc:1844 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" "ភាពអស្រ័យដែលខុសគ្នា ។ ព្យាយាម 'apt-get -f install' ដោយគ្មានកញ្ចប់ (ឬ បញ្ជាក់ដំណោះស្រាយ) ។" -#: cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1856 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" @@ -1105,122 +1122,126 @@ msgstr "" "ដែលបានទាមទារនឹងមិនទាន់បានបង្កើតឡើយ\n" " ឬ បានយកចេញពីការមកដល់ ។" -#: cmdline/apt-get.cc:1827 +#: cmdline/apt-get.cc:1874 msgid "Broken packages" msgstr "កញ្ចប់ដែលបានខូច" -#: cmdline/apt-get.cc:1856 +#: cmdline/apt-get.cc:1903 msgid "The following extra packages will be installed:" msgstr "កញ្ចប់បន្ថែមដូចតទៅនេះ នឹងត្រូវបានដំឡើង ៖" -#: cmdline/apt-get.cc:1945 +#: cmdline/apt-get.cc:1992 msgid "Suggested packages:" msgstr "កញ្ចប់ដែលបានផ្ដល់យោបល់ ៖" -#: cmdline/apt-get.cc:1946 +#: cmdline/apt-get.cc:1993 msgid "Recommended packages:" msgstr "កញ្ចប់ដែលបានផ្ដល់អនុសាសន៍ ៖" -#: cmdline/apt-get.cc:1975 +#: cmdline/apt-get.cc:2022 msgid "Calculating upgrade... " msgstr "កំពុងគណនាការធ្វើឲ្យប្រសើរ... " -#: cmdline/apt-get.cc:1978 methods/ftp.cc:708 methods/connect.cc:112 +#: cmdline/apt-get.cc:2025 methods/ftp.cc:708 methods/connect.cc:112 msgid "Failed" msgstr "បានបរាជ័យ" -#: cmdline/apt-get.cc:1983 +#: cmdline/apt-get.cc:2030 msgid "Done" msgstr "ធ្វើរួច" -#: cmdline/apt-get.cc:2050 cmdline/apt-get.cc:2058 +#: cmdline/apt-get.cc:2097 cmdline/apt-get.cc:2105 msgid "Internal error, problem resolver broke stuff" msgstr "កំហុសខាងក្នុង អ្នកដោះស្រាយបញ្ហាបានធ្វើឲ្យខូចឧបករណ៍" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2129 cmdline/apt-get.cc:2162 +msgid "Unable to lock the download directory" +msgstr "មិនអាចចាក់សោថតទាញយកបានឡើយ" + +#: cmdline/apt-get.cc:2205 msgid "Must specify at least one package to fetch source for" msgstr "យ៉ាងហោចណាស់ត្រូវបញ្ជាក់កញ្ចប់មួយ ដើម្បីទៅប្រមូលយកប្រភពសម្រាប់" -#: cmdline/apt-get.cc:2188 cmdline/apt-get.cc:2434 +#: cmdline/apt-get.cc:2237 cmdline/apt-get.cc:2489 #, c-format msgid "Unable to find a source package for %s" msgstr "មិនអាចរកកញ្ចប់ប្រភពសម្រាប់ %s បានឡើយ" -#: cmdline/apt-get.cc:2237 +#: cmdline/apt-get.cc:2286 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "កំពុងរំលងឯកសារដែលបានទាញយករួច '%s'\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2321 #, c-format msgid "You don't have enough free space in %s" msgstr "អ្នកពុំមានទំហំទំនេរគ្រប់គ្រាន់ទេនៅក្នុង %s ឡើយ" -#: cmdline/apt-get.cc:2278 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ត្រូវការយក %sB/%sB នៃប័ណ្ណសារប្រភព ។\n" -#: cmdline/apt-get.cc:2281 +#: cmdline/apt-get.cc:2330 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ត្រូវការយក %sB នៃប័ណ្ណសារប្រភព ។\n" -#: cmdline/apt-get.cc:2287 +#: cmdline/apt-get.cc:2336 #, c-format msgid "Fetch source %s\n" msgstr "ទៅប្រមូលប្រភព %s\n" -#: cmdline/apt-get.cc:2318 +#: cmdline/apt-get.cc:2369 msgid "Failed to fetch some archives." msgstr "បរាជ័យក្នុងការទៅប្រមូលយកប័ណ្ណសារមួយចំនួន ។" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2398 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "កំពុងរំលងការស្រាយនៃប្រភពដែលបានស្រាយរួចនៅក្នុង %s\n" -#: cmdline/apt-get.cc:2358 +#: cmdline/apt-get.cc:2410 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "ពាក្យបញ្ជាស្រាយ '%s' បានបរាជ័យ ។\n" -#: cmdline/apt-get.cc:2359 +#: cmdline/apt-get.cc:2411 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "ពិនិត្យប្រសិនបើកញ្ចប់ 'dpkg-dev' មិនទាន់បានដំឡើង ។\n" -#: cmdline/apt-get.cc:2376 +#: cmdline/apt-get.cc:2428 #, c-format msgid "Build command '%s' failed.\n" msgstr "សាងសងពាក្យបញ្ជា '%s' បានបរាជ័យ ។\n" -#: cmdline/apt-get.cc:2395 +#: cmdline/apt-get.cc:2448 msgid "Child process failed" msgstr "ដំណើរការកូនបានបរាជ័យ" -#: cmdline/apt-get.cc:2411 +#: cmdline/apt-get.cc:2464 msgid "Must specify at least one package to check builddeps for" msgstr "ត្រូវតែបញ្ជាក់យ៉ាងហោចណាស់មួយកញ្ចប់ដើម្បីពិនិត្យ builddeps សម្រាប់" -#: cmdline/apt-get.cc:2439 +#: cmdline/apt-get.cc:2494 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "មិនអាចសាងសង់ព័ត៌មានភាពអស្រ័យសម្រាប់ %s" -#: cmdline/apt-get.cc:2459 +#: cmdline/apt-get.cc:2514 #, c-format msgid "%s has no build depends.\n" msgstr "%s មិនមានភាពអាស្រ័យស្ថាបនាឡើយ ។\n" -#: cmdline/apt-get.cc:2511 +#: cmdline/apt-get.cc:2566 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%s ភាពអស្រ័យសម្រាប់ %s មិនអាចធ្វើឲ្យពេញចិត្ត ព្រោះរក %s កញ្ចប់មិនឃើញ " -#: cmdline/apt-get.cc:2564 +#: cmdline/apt-get.cc:2619 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1229,30 +1250,30 @@ msgstr "" "ភាពអាស្រ័យ %s សម្រាប់ %s មិនអាចតម្រូវចិត្តបានទេ ព្រោះ មិនមានកំណែនៃកញ្ចប់ %s ដែលអាចតម្រូវចិត្ត" "តម្រូវការកំណែបានឡើយ" -#: cmdline/apt-get.cc:2600 +#: cmdline/apt-get.cc:2655 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "បរាជ័យក្នុងការតម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺថ្មីពេក" -#: cmdline/apt-get.cc:2627 +#: cmdline/apt-get.cc:2682 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "បរាជ័យក្នុងការតម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s: %s" -#: cmdline/apt-get.cc:2643 +#: cmdline/apt-get.cc:2698 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ភាពអាស្រ័យដែលបង្កើត %s មិនអាចបំពេញសេចក្ដីត្រូវការបានទេ ។" -#: cmdline/apt-get.cc:2648 +#: cmdline/apt-get.cc:2703 msgid "Failed to process build dependencies" msgstr "បានបរាជ័យក្នុងការដំណើរការបង្កើតភាពអាស្រ័យ" -#: cmdline/apt-get.cc:2680 +#: cmdline/apt-get.cc:2734 msgid "Supported modules:" msgstr "ម៉ូឌុលដែលគាំទ្រ ៖ " -#: cmdline/apt-get.cc:2721 +#: cmdline/apt-get.cc:2775 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1335,7 +1356,7 @@ msgstr "" "pages for more information and options.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2889 +#: cmdline/apt-get.cc:2944 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1580,10 +1601,10 @@ msgstr "ឯកសារ %s/%s សរសេរជាន់ពីលើ #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:157 -#: apt-pkg/contrib/fileutl.cc:240 apt-pkg/sourcelist.cc:159 -#: apt-pkg/sourcelist.cc:165 apt-pkg/acquire.cc:419 apt-pkg/init.cc:90 -#: apt-pkg/init.cc:98 apt-pkg/clean.cc:33 apt-pkg/policy.cc:279 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 +#: apt-pkg/contrib/fileutl.cc:287 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:92 +#: apt-pkg/init.cc:100 apt-pkg/clean.cc:33 apt-pkg/policy.cc:296 #, c-format msgid "Unable to read %s" msgstr "មិនអាចអាន %s បានឡើយ" @@ -1613,9 +1634,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "ថតព័ត៌មាន និង ពុម្ព ត្រូវការនៅលើប្រព័ន្ធឯកសារដូចគ្នា" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:793 -#: apt-pkg/pkgcachegen.cc:865 apt-pkg/pkgcachegen.cc:870 -#: apt-pkg/pkgcachegen.cc:1008 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:947 +#: apt-pkg/pkgcachegen.cc:1032 apt-pkg/pkgcachegen.cc:1037 +#: apt-pkg/pkgcachegen.cc:1181 msgid "Reading package lists" msgstr "កំពុងអានបញ្ជីកញ្ចប់" @@ -1717,12 +1738,12 @@ msgstr "បរាជ័យក្នុងការដាក់ទិតាំ msgid "Unparsable control file" msgstr "ឯកសារត្រួតពិនិត្យដែលមិនអាចញែកបាន" -#: methods/cdrom.cc:200 +#: methods/cdrom.cc:199 #, c-format msgid "Unable to read the cdrom database %s" msgstr "មិនអាចអានមូលដ្ឋានទិន្នន័យស៊ីឌីរ៉ូម %s បានឡើយ" -#: methods/cdrom.cc:209 +#: methods/cdrom.cc:208 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1730,7 +1751,7 @@ msgstr "" "សូមប្រើ apt-cdrom ដើម្បីបង្កើតស៊ីឌី-រ៉ូមនេះ ដែលបានរៀបចំតាម APT ។ apt-get ធ្វើឲ្យទាន់សម័យ មិន" "ត្រូវបានប្រើដើម្បីបន្ថែមស៊ីឌី-រ៉ូមថ្មីឡើយ" -#: methods/cdrom.cc:219 +#: methods/cdrom.cc:218 msgid "Wrong CD-ROM" msgstr "ស៊ីឌី-រ៉ូមខុស" @@ -1813,7 +1834,7 @@ msgstr "អស់ពេលក្នុងការតភ្ជាប់" msgid "Server closed the connection" msgstr "ម៉ាស៊ីនបម្រើបានបិទការតភ្ជាប់" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:667 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:714 methods/rsh.cc:190 msgid "Read error" msgstr "ការអានមានកំហុស" @@ -1825,7 +1846,7 @@ msgstr "ឆ្លើយតបសតិបណ្តោះអាសន្ន msgid "Protocol corruption" msgstr "ការបង្ខូចពិធីការ" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:706 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:232 msgid "Write error" msgstr "ការសរសេរមានកំហុស" @@ -1879,7 +1900,7 @@ msgstr "ការតភ្ជាប់រន្ធទិន្នន័ msgid "Unable to accept connection" msgstr "មិនអាចទទួលយកការតភ្ជាប់បានឡើយ" -#: methods/ftp.cc:870 methods/http.cc:1000 methods/rsh.cc:303 +#: methods/ftp.cc:870 methods/http.cc:1002 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "បញ្ហាធ្វើឲ្យខូចឯកសារ" @@ -1931,34 +1952,34 @@ msgstr "មិនអាចចាប់ផ្ដើមការតភ្ជ msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "មិនអាចតភ្ជាប់ទៅកាន់ %s:%s (%s) បានឡើយ ការតភ្ជាប់បានអស់ពេល" -#: methods/connect.cc:119 +#: methods/connect.cc:122 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "មិនអាចតភ្ជាប់ទៅកាន់ %s:%s (%s) បានឡើយ ។" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:147 methods/rsh.cc:425 +#: methods/connect.cc:150 methods/rsh.cc:425 #, c-format msgid "Connecting to %s" msgstr "កំពុងតភ្ជាប់ទៅកាន់ %s" -#: methods/connect.cc:166 methods/connect.cc:185 +#: methods/connect.cc:169 methods/connect.cc:188 #, c-format msgid "Could not resolve '%s'" msgstr "មិនអាចដោះស្រាយ '%s' បានឡើយ" -#: methods/connect.cc:191 +#: methods/connect.cc:194 #, c-format msgid "Temporary failure resolving '%s'" msgstr "ការដោះស្រាយភាពបរាជ័យបណ្តោះអាសន្ន '%s'" -#: methods/connect.cc:194 +#: methods/connect.cc:197 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "ការដោះស្រាយអ្វីអាក្រក់ដែលបានកើតឡើង '%s:%s' (%i)" -#: methods/connect.cc:241 +#: methods/connect.cc:244 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "មិនអាចតភ្ជាប់ទៅកាន់ %s %s ៖" @@ -2048,68 +2069,83 @@ msgstr "ម៉ាស៊ីនបម្រើ HTTP នេះបានខូ msgid "Unknown date format" msgstr "មិនស្គាល់ទ្រង់ទ្រាយកាលបរិច្ឆេទ" -#: methods/http.cc:791 +#: methods/http.cc:793 msgid "Select failed" msgstr "ជ្រើសបានបរាជ័យ" -#: methods/http.cc:796 +#: methods/http.cc:798 msgid "Connection timed out" msgstr "ការតភ្ជាប់បានអស់ពេល" -#: methods/http.cc:819 +#: methods/http.cc:821 msgid "Error writing to output file" msgstr "កំហុសក្នុងការសរសេរទៅកាន់ឯកសារលទ្ធផល" -#: methods/http.cc:850 +#: methods/http.cc:852 msgid "Error writing to file" msgstr "កំហុសក្នុងការសរសេរទៅកាន់ឯកសារ" -#: methods/http.cc:878 +#: methods/http.cc:880 msgid "Error writing to the file" msgstr "កំហុសក្នុងការសរសេរទៅកាន់ឯកសារ" -#: methods/http.cc:892 +#: methods/http.cc:894 msgid "Error reading from server. Remote end closed connection" msgstr "កំហុសក្នុងការអានពីម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់ពីចម្ងាយបានបិទការតភ្ជាប់" -#: methods/http.cc:894 +#: methods/http.cc:896 msgid "Error reading from server" msgstr "កំហុសក្នុងការអានពីម៉ាស៊ីនបម្រើ" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:233 +#: methods/http.cc:987 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "បរាជ័យក្នុងការសរសេរឯកសារ %s" -#: methods/http.cc:1150 +#: methods/http.cc:1156 msgid "Bad header data" msgstr "ទិន្នន័យបឋមកថាខូច" -#: methods/http.cc:1167 methods/http.cc:1222 +#: methods/http.cc:1173 methods/http.cc:1228 msgid "Connection failed" msgstr "ការតភ្ជាប់បានបរាជ័យ" -#: methods/http.cc:1314 +#: methods/http.cc:1320 msgid "Internal error" msgstr "កំហុសខាងក្នុង" -#: apt-pkg/contrib/mmap.cc:76 +#: apt-pkg/contrib/mmap.cc:77 msgid "Can't mmap an empty file" msgstr "មិនអាច mmap ឯកសារទទេបានឡើយ" -#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:202 +#: apt-pkg/contrib/mmap.cc:89 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "មិនអាចបើកបំពុងសម្រាប់ %s បានឡើយ" + +#: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:250 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "មិនអាចបង្កើត mmap នៃ %lu បៃបានឡើយ" -#: apt-pkg/contrib/mmap.cc:252 +#: apt-pkg/contrib/mmap.cc:124 +#, fuzzy +msgid "Unable to close mmap" +msgstr "មិនអាចបើក %s បានឡើយ" + +#: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "មិនអាចហៅ " + +#: apt-pkg/contrib/mmap.cc:300 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " "Current value: %lu. (man 5 apt.conf)" msgstr "" -#: apt-pkg/contrib/mmap.cc:347 +#: apt-pkg/contrib/mmap.cc:395 #, c-format msgid "" "The size of a MMap has already reached the defined limit of %lu bytes,abort " @@ -2117,30 +2153,30 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:346 +#: apt-pkg/contrib/strutl.cc:371 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:353 +#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:360 +#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:365 +#: apt-pkg/contrib/strutl.cc:390 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1040 +#: apt-pkg/contrib/strutl.cc:1083 #, c-format msgid "Selection %s not found" msgstr "ជម្រើស %s រកមិនឃើញឡើយ" @@ -2190,7 +2226,12 @@ msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ បា msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់ដែលមិនបានគាំទ្រ '%s'" -#: apt-pkg/contrib/configuration.cc:825 +#: apt-pkg/contrib/configuration.cc:777 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់អាចត្រូវបានធ្វើតែនៅលើកម្រិតកំពូលតែប៉ុណ្ណោះ" + +#: apt-pkg/contrib/configuration.cc:827 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ សារឥតបានការបន្ថែម ដែលនៅខាងចុងឯកសារ" @@ -2221,32 +2262,32 @@ msgstr "មិនយល់ពីជម្រើសបន្ទាត់ msgid "Command line option %s is not boolean" msgstr "ជម្រើសបន្ទាត់ពាក្យបញ្ជា %s មិនមែនជាប៊ូលីនទេ" -#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184 +#: apt-pkg/contrib/cmndline.cc:165 apt-pkg/contrib/cmndline.cc:186 #, c-format msgid "Option %s requires an argument." msgstr "ជម្រើស %s ត្រូវការអាគុយម៉ង់មួយ ។" -#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204 +#: apt-pkg/contrib/cmndline.cc:200 apt-pkg/contrib/cmndline.cc:206 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "ជម្រើស %s ៖ ការបញ្ជាក់ធាតុកំណត់រចនាសម្ព័ន្ធត្រូវតែមាន =<val> មួយ ។" -#: apt-pkg/contrib/cmndline.cc:234 +#: apt-pkg/contrib/cmndline.cc:236 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "ជម្រើស %s ត្រូវការអាគុយម៉ង់ចំនួនគត់ មិនមែន '%s'" -#: apt-pkg/contrib/cmndline.cc:265 +#: apt-pkg/contrib/cmndline.cc:267 #, c-format msgid "Option '%s' is too long" msgstr "ជម្រើស '%s' វែងពេក" -#: apt-pkg/contrib/cmndline.cc:298 +#: apt-pkg/contrib/cmndline.cc:300 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "មិនបានយល់អំពីការស្គាល់ %s ឡើយ សូមព្យាយមយក ពិត ឫ មិនពិត ។" -#: apt-pkg/contrib/cmndline.cc:348 +#: apt-pkg/contrib/cmndline.cc:350 #, c-format msgid "Invalid operation %s" msgstr "ប្រតិបត្តិការមិនត្រឹមត្រូវ %s" @@ -2256,192 +2297,197 @@ msgstr "ប្រតិបត្តិការមិនត្រឹមត msgid "Unable to stat the mount point %s" msgstr "មិនអាចថ្លែង ចំណុចម៉ោន %s បានឡើយ" -#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 +#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "មិនអាចប្ដូរទៅ %s បានឡើយ" -#: apt-pkg/contrib/cdromutl.cc:195 +#: apt-pkg/contrib/cdromutl.cc:204 msgid "Failed to stat the cdrom" msgstr "បរាជ័យក្នុងការថ្លែង ស៊ីឌីរ៉ូម" -#: apt-pkg/contrib/fileutl.cc:151 +#: apt-pkg/contrib/fileutl.cc:152 #, c-format msgid "Not using locking for read only lock file %s" msgstr "មិនប្រើប្រាស់ការចាក់សោ សម្រាប់តែឯកសារចាក់សោដែលបានតែអានប៉ុណ្ណោះ %s" -#: apt-pkg/contrib/fileutl.cc:156 +#: apt-pkg/contrib/fileutl.cc:157 #, c-format msgid "Could not open lock file %s" msgstr "មិនអាចបើកឯកសារចាក់សោ %s បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:174 +#: apt-pkg/contrib/fileutl.cc:175 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "មិនប្រើការចាក់សោ សម្រាប់ nfs ឯកសារចាក់សោដែលបានម៉ោន%s" -#: apt-pkg/contrib/fileutl.cc:178 +#: apt-pkg/contrib/fileutl.cc:179 #, c-format msgid "Could not get lock %s" msgstr "មិនអាចចាក់សោ %s បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:568 +#: apt-pkg/contrib/fileutl.cc:615 #, c-format msgid "Waited for %s but it wasn't there" msgstr "រង់ចាំប់ %s ប៉ុន្តែ វាមិននៅទីនោះ" -#: apt-pkg/contrib/fileutl.cc:580 +#: apt-pkg/contrib/fileutl.cc:627 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "ដំណើរការរង %s បានទទួលកំហុសការចែកជាចម្រៀក ។" -#: apt-pkg/contrib/fileutl.cc:582 +#: apt-pkg/contrib/fileutl.cc:629 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "ដំណើរការរង %s បានទទួលកំហុសការចែកជាចម្រៀក ។" -#: apt-pkg/contrib/fileutl.cc:586 +#: apt-pkg/contrib/fileutl.cc:633 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ដំណើរការរង %s បានត្រឡប់ទៅកាន់កូដមានកំហុស (%u)" -#: apt-pkg/contrib/fileutl.cc:588 +#: apt-pkg/contrib/fileutl.cc:635 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ដំណើរការរង %s បានចេញ ដោយមិនរំពឹងទុក " -#: apt-pkg/contrib/fileutl.cc:632 +#: apt-pkg/contrib/fileutl.cc:679 #, c-format msgid "Could not open file %s" msgstr "មិនអាចបើកឯកសារ %s បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:688 +#: apt-pkg/contrib/fileutl.cc:735 #, c-format msgid "read, still have %lu to read but none left" msgstr "អាន, នៅតែមាន %lu ដើម្បីអាន ប៉ុន្តែគ្មានអ្វីនៅសល់" -#: apt-pkg/contrib/fileutl.cc:718 +#: apt-pkg/contrib/fileutl.cc:765 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "សរសេរ, នៅតែមាន %lu ដើម្បីសរសេរ ប៉ុន្តែមិនអាច" -#: apt-pkg/contrib/fileutl.cc:793 +#: apt-pkg/contrib/fileutl.cc:840 msgid "Problem closing the file" msgstr "មានបញ្ហាក្នុងការបិទឯកសារ" -#: apt-pkg/contrib/fileutl.cc:799 +#: apt-pkg/contrib/fileutl.cc:846 msgid "Problem unlinking the file" msgstr "មានបញ្ហាក្នុងការផ្ដាច់តំណឯកសារ" -#: apt-pkg/contrib/fileutl.cc:810 +#: apt-pkg/contrib/fileutl.cc:857 msgid "Problem syncing the file" msgstr "មានបញ្ហាក្នុងការធ្វើសមកាលកម្មឯកសារ" -#: apt-pkg/pkgcache.cc:133 +#: apt-pkg/pkgcache.cc:139 msgid "Empty package cache" msgstr "ឃ្លាំងកញ្ចប់ទទេ" -#: apt-pkg/pkgcache.cc:139 +#: apt-pkg/pkgcache.cc:145 msgid "The package cache file is corrupted" msgstr "ឯកសារឃ្លាំងកញ្ចប់មិនត្រឹមត្រូវ" -#: apt-pkg/pkgcache.cc:144 +#: apt-pkg/pkgcache.cc:150 msgid "The package cache file is an incompatible version" msgstr "ឯកសារឃ្លាំងសម្ងាត់កញ្ចប់ជាកំណែមិនត្រូវគ្នា" -#: apt-pkg/pkgcache.cc:149 +#: apt-pkg/pkgcache.cc:155 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "APT នេះ មិនគាំទ្រប្រព័ន្ធ ការធ្វើកំណែនេះទេ '%s'" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:160 msgid "The package cache was built for a different architecture" msgstr "ឃ្លាំងសម្ងាត់កញ្ចប់ត្រូវបានស្ថាបនា់សម្រាប់ស្ថាបត្យករខុសៗគ្នា" -#: apt-pkg/pkgcache.cc:225 +#: apt-pkg/pkgcache.cc:287 msgid "Depends" msgstr "អាស្រ័យ" -#: apt-pkg/pkgcache.cc:225 +#: apt-pkg/pkgcache.cc:287 msgid "PreDepends" msgstr "អាស្រ័យជាមុន" -#: apt-pkg/pkgcache.cc:225 +#: apt-pkg/pkgcache.cc:287 msgid "Suggests" msgstr "ផ្ដល់យោបល់" -#: apt-pkg/pkgcache.cc:226 +#: apt-pkg/pkgcache.cc:288 msgid "Recommends" msgstr "ផ្តល់អនុសាសន៍" -#: apt-pkg/pkgcache.cc:226 +#: apt-pkg/pkgcache.cc:288 msgid "Conflicts" msgstr "ប៉ះទង្គិច" -#: apt-pkg/pkgcache.cc:226 +#: apt-pkg/pkgcache.cc:288 msgid "Replaces" msgstr "ជំនួស" -#: apt-pkg/pkgcache.cc:227 +#: apt-pkg/pkgcache.cc:289 msgid "Obsoletes" msgstr "លែងប្រើ" -#: apt-pkg/pkgcache.cc:227 +#: apt-pkg/pkgcache.cc:289 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:227 +#: apt-pkg/pkgcache.cc:289 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:238 +#: apt-pkg/pkgcache.cc:300 msgid "important" msgstr "សំខាន់" -#: apt-pkg/pkgcache.cc:238 +#: apt-pkg/pkgcache.cc:300 msgid "required" msgstr "បានទាមទារ" -#: apt-pkg/pkgcache.cc:238 +#: apt-pkg/pkgcache.cc:300 msgid "standard" msgstr "គំរូ" -#: apt-pkg/pkgcache.cc:239 +#: apt-pkg/pkgcache.cc:301 msgid "optional" msgstr "ស្រេចចិត្ត" -#: apt-pkg/pkgcache.cc:239 +#: apt-pkg/pkgcache.cc:301 msgid "extra" msgstr "បន្ថែម" -#: apt-pkg/depcache.cc:123 apt-pkg/depcache.cc:152 +#: apt-pkg/depcache.cc:124 apt-pkg/depcache.cc:153 msgid "Building dependency tree" msgstr "កំពុងស្ថាបនាមែកធាងភាពអាស្រ័យ" -#: apt-pkg/depcache.cc:124 +#: apt-pkg/depcache.cc:125 msgid "Candidate versions" msgstr "កំណែសាកល្បង" -#: apt-pkg/depcache.cc:153 +#: apt-pkg/depcache.cc:154 msgid "Dependency generation" msgstr "ការបង្កើតភាពអាស្រ័យ" -#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:207 apt-pkg/depcache.cc:211 #, fuzzy msgid "Reading state information" msgstr "បញ្ចូលព័ត៌មានដែលមានចូលគ្នា" -#: apt-pkg/depcache.cc:223 +#: apt-pkg/depcache.cc:236 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "បរាជ័យក្នុងការបើក %s" -#: apt-pkg/depcache.cc:229 +#: apt-pkg/depcache.cc:242 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "បរាជ័យក្នុងការសរសេរឯកសារ %s" +#: apt-pkg/depcache.cc:851 +#, c-format +msgid "Internal error, group '%s' has no installable pseudo package" +msgstr "" + #: apt-pkg/tagfile.cc:102 #, c-format msgid "Unable to parse package file %s (1)" @@ -2452,64 +2498,84 @@ msgstr "មិនអាចញែកឯកសារកញ្ចប់ %s (1 msgid "Unable to parse package file %s (2)" msgstr "មិនអាចញែកឯកសារកញ្ចប់ %s (2) បានឡើយ" -#: apt-pkg/sourcelist.cc:83 +#: apt-pkg/sourcelist.cc:92 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist ញែក)" + +#: apt-pkg/sourcelist.cc:95 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist)" + +#: apt-pkg/sourcelist.cc:106 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist ញែក)" + +#: apt-pkg/sourcelist.cc:112 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist ញែក)" + +#: apt-pkg/sourcelist.cc:115 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist ញែក)" + +#: apt-pkg/sourcelist.cc:128 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "បន្ទាត់ Malformed %lu ក្នុងញ្ជីប្រភព %s (URI)" -#: apt-pkg/sourcelist.cc:85 +#: apt-pkg/sourcelist.cc:130 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist)" -#: apt-pkg/sourcelist.cc:88 +#: apt-pkg/sourcelist.cc:133 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (URI ញែក)" -#: apt-pkg/sourcelist.cc:94 +#: apt-pkg/sourcelist.cc:139 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist លែងប្រើ)" -#: apt-pkg/sourcelist.cc:101 +#: apt-pkg/sourcelist.cc:146 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist ញែក)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:244 #, c-format msgid "Opening %s" msgstr "កំពុងបើក %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:445 +#: apt-pkg/sourcelist.cc:261 apt-pkg/cdrom.cc:438 #, c-format msgid "Line %u too long in source list %s." msgstr "បន្ទាត់ %u មានប្រវែងវែងពេកនៅក្នុងបញ្ជីប្រភព %s ។" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:281 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "បន្ទាត់ Malformed %u ក្នុងបញ្ជីប្រភព %s (ប្រភេទ)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:285 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "ប្រភេទ '%s' មិនស្គាល់នៅលើបន្ទាត់ %u ក្នុងបញ្ជីប្រភព %s ឡើយ" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 -#, c-format -msgid "Malformed line %u in source list %s (vendor id)" -msgstr "បន្ទាត់ Malformed %u ក្នុងបញ្ជីប្រភព %s (លេខសម្គាល់ក្រុមហ៊ុនលក់)" - -#: apt-pkg/packagemanager.cc:324 apt-pkg/packagemanager.cc:586 +#: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:615 #, c-format msgid "" "Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:440 +#: apt-pkg/packagemanager.cc:452 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2520,7 +2586,7 @@ msgstr "" "ភាពអាស្រ័យជាមុន ។ ជាញឹកញាប់គឺ មិនត្រឹមត្រូវ ប៉ុន្តែ ប្រសិនបើអ្នកពិតជាចង់ធ្វើវា ធ្វើឲ្យជម្រើស APT::" "Force-LoopBreak សកម្ម ។" -#: apt-pkg/packagemanager.cc:478 +#: apt-pkg/packagemanager.cc:495 #, c-format msgid "" "Could not perform immediate configuration on already unpacked '%s'.Please " @@ -2532,13 +2598,13 @@ msgstr "" msgid "Index file type '%s' is not supported" msgstr "ប្រភេទឯកសារលិបិក្រម '%s' មិនត្រូវបានគាំទ្រ" -#: apt-pkg/algorithms.cc:248 +#: apt-pkg/algorithms.cc:292 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "កញ្ចប់ %s ត្រូវការឲ្យដំឡើង ប៉ុន្តែ ខ្ញុំមិនអាចរកប័ណ្ណសារសម្រាប់វាបានទេ ។" -#: apt-pkg/algorithms.cc:1138 +#: apt-pkg/algorithms.cc:1182 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2546,35 +2612,40 @@ msgstr "" "កំហុស pkgProblemResolver::ដោះស្រាយសញ្ញាបញ្ឈប់ដែលបានបង្កើត នេះប្រហែលជា បង្កដោយកញ្ចប់" "ដែលបានទុក ។" -#: apt-pkg/algorithms.cc:1140 +#: apt-pkg/algorithms.cc:1184 msgid "Unable to correct problems, you have held broken packages." msgstr "មិនអាចកែបញ្ហាបានទេេ អ្កបានទុកកញ្ចប់ដែលខូច ។។" -#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 +#: apt-pkg/algorithms.cc:1461 apt-pkg/algorithms.cc:1463 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." msgstr "" "ឯកសារលិបិក្រមមួយចំនួនបានបរាជ័យក្នុងការទាញយក ពួកវាត្រូវបានមិនអើពើ ឬ ប្រើឯកសារចាស់ជំនួសវិញ ។" -#: apt-pkg/acquire.cc:60 -#, c-format -msgid "Lists directory %spartial is missing." +#: apt-pkg/acquire.cc:79 +#, fuzzy, c-format +msgid "List directory %spartial is missing." msgstr "រាយបញ្ជីថត %spartial គឺបាត់បង់ ។" -#: apt-pkg/acquire.cc:64 -#, c-format -msgid "Archive directory %spartial is missing." +#: apt-pkg/acquire.cc:83 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." msgstr "ថតប័ណ្ណសារ %spartial គឺបាត់បង់ ។" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "មិនអាចចាក់សោថតបញ្ជីបានឡើយ" + #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:826 +#: apt-pkg/acquire.cc:878 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "កំពុងទៅយកឯកសារ %li នៃ %li (នៅសល់ %s)" -#: apt-pkg/acquire.cc:828 +#: apt-pkg/acquire.cc:880 #, c-format msgid "Retrieving file %li of %li" msgstr "កំពុងទៅយកឯកសារ %li នៃ %li" @@ -2594,12 +2665,12 @@ msgstr "វិធីសាស្ត្រ %s មិនអាចចា msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "សូមបញ្ចូលស្លាកឌីស ៖ '%s' ក្នុងដ្រាយ '%s' ហើយសង្កត់ចូល ។" -#: apt-pkg/init.cc:133 +#: apt-pkg/init.cc:135 #, c-format msgid "Packaging system '%s' is not supported" msgstr "មិនគាំទ្រប្រព័ន្ធកញ្ចប់'%s' ឡើយ" -#: apt-pkg/init.cc:149 +#: apt-pkg/init.cc:151 msgid "Unable to determine a suitable packaging system type" msgstr "មិនអាចកំណត់ប្រភេទប្រព័ន្ធកញ្ចប់ដែលសមរម្យបានឡើយ" @@ -2620,111 +2691,111 @@ msgstr "បញ្ជីកញ្ចប់ ឬ ឯកសារស្ថ msgid "You may want to run apt-get update to correct these problems" msgstr "អ្នកប្រហែលជាចង់ភាពទាន់សម័យ apt-get ដើម្បីកែបញ្ហាទាំងនេះ" -#: apt-pkg/policy.cc:316 +#: apt-pkg/policy.cc:333 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "កំណត់ត្រាមិនត្រឹមត្រូវនៅក្នុងឯកសារចំណង់ចំណូលចិត្ត មិនមានបឋមកថាកញ្ចប់ទេ" -#: apt-pkg/policy.cc:338 +#: apt-pkg/policy.cc:355 #, c-format msgid "Did not understand pin type %s" msgstr "មិនបានយល់ពីប្រភេទម្ជុល %s ឡើយ" -#: apt-pkg/policy.cc:346 +#: apt-pkg/policy.cc:363 msgid "No priority (or zero) specified for pin" msgstr "គ្មានអទិភាព (ឬ សូន្យ) បានបញ្ជាក់សម្រាប់ម្ជុលទេ" -#: apt-pkg/pkgcachegen.cc:74 +#: apt-pkg/pkgcachegen.cc:75 msgid "Cache has an incompatible versioning system" msgstr "ឃ្លាំងសម្ងាត់មិនត្រូវគ្នានឹង ប្រព័ន្ធ ធ្វើកំណែ" -#: apt-pkg/pkgcachegen.cc:117 +#: apt-pkg/pkgcachegen.cc:131 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កញ្ចប់ថ្មី)" -#: apt-pkg/pkgcachegen.cc:132 +#: apt-pkg/pkgcachegen.cc:146 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (ប្រើកញ្ចប់១)" -#: apt-pkg/pkgcachegen.cc:166 +#: apt-pkg/pkgcachegen.cc:180 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កំណែឯកសារថ្មី១)" -#: apt-pkg/pkgcachegen.cc:191 +#: apt-pkg/pkgcachegen.cc:210 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (ប្រើកញ្ចប់២)" -#: apt-pkg/pkgcachegen.cc:195 +#: apt-pkg/pkgcachegen.cc:214 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កំណែឯកសារថ្មី១)" -#: apt-pkg/pkgcachegen.cc:226 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កំណែ១ថ្មី)" -#: apt-pkg/pkgcachegen.cc:230 +#: apt-pkg/pkgcachegen.cc:238 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (ប្រើកញ្ចប់៣)" -#: apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:242 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងដំណើរការ %s (កំណែ២ថ្មី)" -#: apt-pkg/pkgcachegen.cc:258 +#: apt-pkg/pkgcachegen.cc:266 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កំណែឯកសារថ្មី១)" -#: apt-pkg/pkgcachegen.cc:264 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "អស្ចារ្យ អ្នកមានឈ្មោះកញ្ចប់លើសចំនួន APT នេះឆបគ្នា ។" -#: apt-pkg/pkgcachegen.cc:267 +#: apt-pkg/pkgcachegen.cc:276 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "អស្ចារ្យ អ្នកមានកំណែលើសចំនួន APT នេះឆបគ្នា ។" -#: apt-pkg/pkgcachegen.cc:270 +#: apt-pkg/pkgcachegen.cc:279 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "អស្ចារ្យ អ្នកមានកំណែលើសចំនួន APT នេះឆបគ្នា ។" -#: apt-pkg/pkgcachegen.cc:273 +#: apt-pkg/pkgcachegen.cc:282 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "អស្ចារ្យ, អ្នកមានភាពអាស្រ័យលើសចំនួន APT នេះឆបគ្នា ។" -#: apt-pkg/pkgcachegen.cc:301 +#: apt-pkg/pkgcachegen.cc:310 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងដំណើរការ %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:314 +#: apt-pkg/pkgcachegen.cc:323 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងដំណើរការ%s (ផ្តល់ឯកសារប្រមូលផ្តុំ)" -#: apt-pkg/pkgcachegen.cc:320 +#: apt-pkg/pkgcachegen.cc:329 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "កញ្ចប់ %s %s រកមិនឃើញខណៈពេលកំពុងដំណើរការភាពអាស្រ័យឯកសារ" -#: apt-pkg/pkgcachegen.cc:706 +#: apt-pkg/pkgcachegen.cc:860 #, c-format msgid "Couldn't stat source package list %s" msgstr "មិនអាចថ្លែង បញ្ជីកញ្ចប់ប្រភពចប់ បានឡើយ %s" -#: apt-pkg/pkgcachegen.cc:808 +#: apt-pkg/pkgcachegen.cc:962 msgid "Collecting File Provides" msgstr "ការផ្ដល់ឯកសារប្រមូលផ្ដុំ" -#: apt-pkg/pkgcachegen.cc:952 apt-pkg/pkgcachegen.cc:959 +#: apt-pkg/pkgcachegen.cc:1122 apt-pkg/pkgcachegen.cc:1129 msgid "IO Error saving source cache" msgstr "IO កំហុសក្នុងការររក្សាទុកឃ្លាំងសម្ងាត់ប្រភព" @@ -2737,7 +2808,7 @@ msgstr "ប្តូរឈ្មោះបានបរាជ័យ, %s ( msgid "MD5Sum mismatch" msgstr "MD5Sum មិនផ្គួផ្គង" -#: apt-pkg/acquire-item.cc:693 apt-pkg/acquire-item.cc:1455 +#: apt-pkg/acquire-item.cc:693 apt-pkg/acquire-item.cc:1469 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum មិនផ្គួផ្គង" @@ -2763,13 +2834,13 @@ msgid "" msgstr "" "ខ្ញុំមិនអាចរកទីតាំងឯកសារសម្រាប់កញ្ចប់ %s បានទេ ។ មានន័យថាអ្នកត្រូវការជួសជុលកញ្ចប់នេះដោយដៃ ។" -#: apt-pkg/acquire-item.cc:1360 +#: apt-pkg/acquire-item.cc:1374 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "កញ្ចប់ឯកសារលិបិក្រមត្រូវបានខូច ។ គ្មានឈ្មោះឯកសារ ៖ វាលសម្រាប់កញ្ចប់នេះទេ %s ។" -#: apt-pkg/acquire-item.cc:1447 +#: apt-pkg/acquire-item.cc:1461 msgid "Size mismatch" msgstr "ទំហំមិនបានផ្គួផ្គង" @@ -2793,7 +2864,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "ប្លុកក្រុមហ៊ុនលក់ %s គ្មានស្នាមផ្តិតម្រាមដៃ" -#: apt-pkg/cdrom.cc:525 +#: apt-pkg/cdrom.cc:518 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2802,65 +2873,65 @@ msgstr "" "ការប្រើប្រាស់ចំណុចម៉ោន ស៊ីឌី-រ៉ូម %s\n" "កំពុងម៉ោនស៊ីឌី-រ៉ូម\n" -#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 +#: apt-pkg/cdrom.cc:527 apt-pkg/cdrom.cc:615 msgid "Identifying.. " msgstr "កំពុងធ្វើអត្តសញ្ញាណនា.. " -#: apt-pkg/cdrom.cc:559 +#: apt-pkg/cdrom.cc:552 #, c-format msgid "Stored label: %s\n" msgstr "បានទុកស្លាក ៖ %s \n" -#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 +#: apt-pkg/cdrom.cc:559 apt-pkg/cdrom.cc:827 #, fuzzy msgid "Unmounting CD-ROM...\n" msgstr "មិនកំពុងម៉ោន ស៊ីឌី-រ៉ូម ទេ..." -#: apt-pkg/cdrom.cc:585 +#: apt-pkg/cdrom.cc:578 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "ប្រើប្រាស់ចំណុចម៉ោន ស៊ីឌី-រ៉ូម %s\n" -#: apt-pkg/cdrom.cc:603 +#: apt-pkg/cdrom.cc:596 msgid "Unmounting CD-ROM\n" msgstr "ការមិនម៉ោន ស៊ីឌី-រ៉ូម\n" -#: apt-pkg/cdrom.cc:607 +#: apt-pkg/cdrom.cc:600 msgid "Waiting for disc...\n" msgstr "កំពុងរង់ចាំឌីស...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:615 +#: apt-pkg/cdrom.cc:608 msgid "Mounting CD-ROM...\n" msgstr "កំពុងម៉ោន ស៊ីឌី-រ៉ូម...\n" -#: apt-pkg/cdrom.cc:633 +#: apt-pkg/cdrom.cc:626 msgid "Scanning disc for index files..\n" msgstr "កំពុងស្កេនឌីសសម្រាប់ឯកសារលិបិក្រម..\n" -#: apt-pkg/cdrom.cc:673 +#: apt-pkg/cdrom.cc:666 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "បានរកឃើញ លិបិក្រមកញ្ចប់ %i លិបិក្រមប្រភព%i និង ហត្ថលេខា %i \n" -#: apt-pkg/cdrom.cc:684 +#: apt-pkg/cdrom.cc:677 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:710 +#: apt-pkg/cdrom.cc:703 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "បានទុកស្លាក ៖ %s \n" -#: apt-pkg/cdrom.cc:739 +#: apt-pkg/cdrom.cc:732 msgid "That is not a valid name, try again.\n" msgstr "នោះមិនមែនជាឈ្មោះត្រឹមត្រូវទេ សូមព្យាយាមម្ដងទៀត ។\n" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:748 #, c-format msgid "" "This disc is called: \n" @@ -2869,15 +2940,15 @@ msgstr "" "ឌីសនេះត្រូវបានហៅ ៖ \n" "'%s'\n" -#: apt-pkg/cdrom.cc:759 +#: apt-pkg/cdrom.cc:752 msgid "Copying package lists..." msgstr "កំពុងចម្លងបញ្ជីកញ្ចប់..." -#: apt-pkg/cdrom.cc:785 +#: apt-pkg/cdrom.cc:778 msgid "Writing new source list\n" msgstr "កំពុងសរសេរបញ្ជីប្រភពថ្មី\n" -#: apt-pkg/cdrom.cc:794 +#: apt-pkg/cdrom.cc:787 msgid "Source list entries for this disc are:\n" msgstr "ធាតុបញ្ចូលបញ្ជីប្រភពសម្រាប់ឌីសនេះគឺ ៖\n" @@ -2921,12 +2992,12 @@ msgstr "MD5Sum មិនផ្គួផ្គង" msgid "Installing %s" msgstr "បានដំឡើង %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:661 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:737 #, c-format msgid "Configuring %s" msgstr "កំពុងកំណត់រចនាសម្ព័ន្ធ %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:668 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:744 #, c-format msgid "Removing %s" msgstr "កំពុងយក %s ចេញ" @@ -2941,56 +3012,61 @@ msgstr "បានយក %s ចេញទាំងស្រុង" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:558 +#: apt-pkg/deb/dpkgpm.cc:581 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "រាយបញ្ជីថត %spartial គឺបាត់បង់ ។" -#: apt-pkg/deb/dpkgpm.cc:654 +#: apt-pkg/deb/dpkgpm.cc:596 apt-pkg/deb/dpkgpm.cc:609 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "មិនអាចបើកឯកសារ %s បានឡើយ" + +#: apt-pkg/deb/dpkgpm.cc:730 #, c-format msgid "Preparing %s" msgstr "កំពុងរៀបចំ %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:731 #, c-format msgid "Unpacking %s" msgstr "កំពុងស្រាយ %s" -#: apt-pkg/deb/dpkgpm.cc:660 +#: apt-pkg/deb/dpkgpm.cc:736 #, c-format msgid "Preparing to configure %s" msgstr "កំពុងរៀបចំកំណត់រចនាសម្ព័ន្ធ %s" -#: apt-pkg/deb/dpkgpm.cc:662 +#: apt-pkg/deb/dpkgpm.cc:738 #, c-format msgid "Installed %s" msgstr "បានដំឡើង %s" -#: apt-pkg/deb/dpkgpm.cc:667 +#: apt-pkg/deb/dpkgpm.cc:743 #, c-format msgid "Preparing for removal of %s" msgstr "កំពុងរៀបចំដើម្បីការយកចេញនៃ %s" -#: apt-pkg/deb/dpkgpm.cc:669 +#: apt-pkg/deb/dpkgpm.cc:745 #, c-format msgid "Removed %s" msgstr "បានយក %s ចេញ" -#: apt-pkg/deb/dpkgpm.cc:674 +#: apt-pkg/deb/dpkgpm.cc:750 #, c-format msgid "Preparing to completely remove %s" msgstr "កំពុងរៀបចំយក %s ចេញទាំងស្រុង" -#: apt-pkg/deb/dpkgpm.cc:675 +#: apt-pkg/deb/dpkgpm.cc:751 #, c-format msgid "Completely removed %s" msgstr "បានយក %s ចេញទាំងស្រុង" -#: apt-pkg/deb/dpkgpm.cc:879 +#: apt-pkg/deb/dpkgpm.cc:955 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:909 +#: apt-pkg/deb/dpkgpm.cc:986 msgid "Running dpkg" msgstr "" @@ -3034,6 +3110,9 @@ msgstr "" msgid "Connection closed prematurely" msgstr "បានបិទការតភ្ជាប់មុនពេល" +#~ msgid "Malformed line %u in source list %s (vendor id)" +#~ msgstr "បន្ទាត់ Malformed %u ក្នុងបញ្ជីប្រភព %s (លេខសម្គាល់ក្រុមហ៊ុនលក់)" + #~ msgid "Couldn't access keyring: '%s'" #~ msgstr "មិនអាចចូលដំណើរការ keyring ៖ '%s'" |