summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <egon@bottom>2008-02-19 19:26:32 +0100
committerMichael Vogt <egon@bottom>2008-02-19 19:26:32 +0100
commit5c84be897a08247a5146cccbac7134cadfb43310 (patch)
treeccffceb503eaa2d926cc75171dd3723a4a1de462
parent4d46ff50f061c4742713e906430d73fdc927b250 (diff)
parent1bf52388c98e72768b8f883726ee7e2e2992e4ff (diff)
downloadpython-apt-5c84be897a08247a5146cccbac7134cadfb43310.tar.gz
* use the new CacheFile::ListUpdate() code
* add example in doc/examples/update.py * python/pkgrecords.cc: - export the Homepage field * python/tar.cc: - fix .lzma extraction (thanks to bigjools) * python/sourcelist.cc: - support GetIndexes() GetAll argument to implement something like --print-uris * python/apt_pkgmodule.cc: - add InstState{Ok,ReInstReq,Hold,HoldReInstReq} constants * apt/cache.py: - add reqReinstallPkgs property that lists all packages in ReInstReq or HoldReInstReq
-rw-r--r--apt/cache.py21
-rw-r--r--apt/package.py8
-rw-r--r--debian/changelog19
-rw-r--r--debian/control2
-rwxr-xr-xdoc/examples/gui-inst.py55
-rwxr-xr-xdoc/examples/update.py13
-rw-r--r--po/am.po108
-rw-r--r--po/ar.po108
-rw-r--r--po/be.po108
-rw-r--r--po/bg.po112
-rw-r--r--po/bn.po112
-rw-r--r--po/br.po108
-rw-r--r--po/ca.po112
-rw-r--r--po/cs.po112
-rw-r--r--po/csb.po108
-rw-r--r--po/da.po112
-rw-r--r--po/de.po120
-rw-r--r--po/el.po112
-rw-r--r--po/en_AU.po112
-rw-r--r--po/en_CA.po112
-rw-r--r--po/en_GB.po112
-rw-r--r--po/eo.po108
-rw-r--r--po/es.po129
-rw-r--r--po/et.po108
-rw-r--r--po/eu.po108
-rw-r--r--po/fa.po108
-rw-r--r--po/fi.po112
-rw-r--r--po/fr.po464
-rw-r--r--po/fur.po108
-rw-r--r--po/gl.po121
-rw-r--r--po/he.po112
-rw-r--r--po/hi.po108
-rw-r--r--po/hr.po112
-rw-r--r--po/hu.po112
-rw-r--r--po/id.po110
-rw-r--r--po/it.po128
-rw-r--r--po/ja.po112
-rw-r--r--po/ka.po112
-rw-r--r--po/ko.po112
-rw-r--r--po/ku.po112
-rw-r--r--po/lt.po112
-rw-r--r--po/lv.po108
-rw-r--r--po/mk.po112
-rw-r--r--po/mr.po108
-rw-r--r--po/ms.po108
-rw-r--r--po/nb.po116
-rw-r--r--po/ne.po112
-rw-r--r--po/nl.po112
-rw-r--r--po/nn.po108
-rw-r--r--po/no.po116
-rw-r--r--po/oc.po112
-rw-r--r--po/pa.po108
-rw-r--r--po/pl.po112
-rw-r--r--po/ps.po108
-rw-r--r--po/pt.po112
-rw-r--r--po/pt_BR.po112
-rw-r--r--po/python-apt.pot108
-rw-r--r--po/qu.po108
-rw-r--r--po/ro.po112
-rw-r--r--po/ru.po112
-rw-r--r--po/rw.po112
-rw-r--r--po/sk.po112
-rw-r--r--po/sl.po108
-rw-r--r--po/sq.po114
-rw-r--r--po/sr.po108
-rw-r--r--po/sv.po112
-rw-r--r--po/ta.po108
-rw-r--r--po/th.po112
-rw-r--r--po/tl.po108
-rw-r--r--po/tr.po112
-rw-r--r--po/uk.po108
-rw-r--r--po/ur.po108
-rw-r--r--po/urd.po108
-rw-r--r--po/vi.po116
-rw-r--r--po/xh.po108
-rw-r--r--po/zh_CN.po112
-rw-r--r--po/zh_HK.po108
-rw-r--r--po/zh_TW.po112
-rw-r--r--python/apt_pkgmodule.cc5
-rw-r--r--python/cache.cc50
-rw-r--r--python/pkgrecords.cc2
-rw-r--r--python/sourcelist.cc6
-rw-r--r--python/tar.cc2
83 files changed, 5240 insertions, 3309 deletions
diff --git a/apt/cache.py b/apt/cache.py
index 65f3c9d9..a92bd5be 100644
--- a/apt/cache.py
+++ b/apt/cache.py
@@ -122,6 +122,17 @@ class Cache(object):
self._depcache.Upgrade(distUpgrade)
self.cachePostChange()
+ @property
+ def reqReinstallPkgs(self):
+ " return the packages not downloadable packages in reqreinst state "
+ reqreinst = set()
+ for pkg in self:
+ if (not pkg.candidateDownloadable and
+ (pkg._pkg.InstState == apt_pkg.InstStateReInstReq or
+ pkg._pkg.InstState == apt_pkg.InstStateHoldReInstReq)):
+ reqreinst.add(pkg.name)
+ return reqreinst
+
def _runFetcher(self, fetcher):
# do the actual fetching
res = fetcher.Run()
@@ -166,6 +177,7 @@ class Cache(object):
os.close(lock)
def update(self, fetchProgress=None):
+ " run the equivalent of apt-get update "
lockfile = apt_pkg.Config.FindDir("Dir::State::Lists") + "lock"
lock = apt_pkg.GetLock(lockfile)
if lock < 0:
@@ -174,14 +186,7 @@ class Cache(object):
try:
if fetchProgress == None:
fetchProgress = apt.progress.FetchProgress()
- fetcher = apt_pkg.GetAcquire(fetchProgress)
- # this can throw a exception
- self._list.GetIndexes(fetcher)
- # now run the fetcher, throw exception if something fails to be
- # fetched
- if self._runFetcher(fetcher) == fetcher.ResultContinue:
- return True
- return False
+ return self._cache.Update(fetchProgress, self._list)
finally:
os.close(lock)
diff --git a/apt/package.py b/apt/package.py
index 49aadd20..ac045969 100644
--- a/apt/package.py
+++ b/apt/package.py
@@ -194,6 +194,13 @@ class Package(object):
return self._pkg.Name
sourcePackageName = property(sourcePackageName)
+ def homepage(self):
+ """ Return the homepage field as string """
+ if not self._lookupRecord():
+ return None
+ return self._records.Homepage
+ homepage = property(homepage)
+
def section(self):
""" Return the section of the package"""
return self._pkg.Section
@@ -449,6 +456,7 @@ if __name__ == "__main__":
for dep in pkg.candidateDependencies:
print ",".join(["%s (%s) (%s) (%s)" % (o.name,o.version,o.relation, o.preDepend) for o in dep.or_dependencies])
print "arch: %s" % pkg.architecture
+ print "homepage: %s" % pkg.homepage
print "rec: ",pkg.candidateRecord
# now test install/remove
diff --git a/debian/changelog b/debian/changelog
index b3bed228..08fe98a8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,22 @@
+python-apt (0.7.5) UNRELEASED; urgency=low
+
+ * use the new CacheFile::ListUpdate() code
+ * add example in doc/examples/update.py
+ * python/pkgrecords.cc:
+ - export the Homepage field
+ * python/tar.cc:
+ - fix .lzma extraction (thanks to bigjools)
+ * python/sourcelist.cc:
+ - support GetIndexes() GetAll argument to implement
+ something like --print-uris
+ * python/apt_pkgmodule.cc:
+ - add InstState{Ok,ReInstReq,Hold,HoldReInstReq} constants
+ * apt/cache.py:
+ - add reqReinstallPkgs property that lists all packages in
+ ReInstReq or HoldReInstReq
+
+ -- Michael Vogt <michael.vogt@ubuntu.com> Fri, 04 Jan 2008 21:17:00 +0100
+
python-apt (0.7.4) unstable; urgency=low
* apt/debfile.py:
diff --git a/debian/control b/debian/control
index 1f583e2f..51bb064b 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: APT Development Team <deity@lists.debian.org>
Uploaders: Matt Zimmerman <mdz@debian.org>, Michael Vogt <mvo@debian.org>
Standards-Version: 3.7.2.2
XS-Python-Version: all
-Build-Depends: debhelper (>= 5.0.37.1), libapt-pkg-dev (>= 0.7.0), apt-utils, python-all-dev, python-distutils-extra (>= 1.9.0), cdbs, python-central (>= 0.5), python-all-dbg
+Build-Depends: debhelper (>= 5.0.37.1), libapt-pkg-dev (>= 0.7.10), apt-utils, python-all-dev, python-distutils-extra (>= 1.9.0), cdbs, python-central (>= 0.5), python-all-dbg
XS-Vcs-Bzr: http://people.debian.org/~mvo/bzr/python-apt/debian-sid
Package: python-apt
diff --git a/doc/examples/gui-inst.py b/doc/examples/gui-inst.py
index deb325fe..c2555134 100755
--- a/doc/examples/gui-inst.py
+++ b/doc/examples/gui-inst.py
@@ -48,6 +48,7 @@ class GuiFetchProgress(gtk.Window, FetchProgress):
class TermInstallProgress(InstallProgress, gtk.Window):
def __init__(self):
gtk.Window.__init__(self)
+ InstallProgress.__init__(self)
self.show()
box = gtk.VBox()
box.show()
@@ -58,62 +59,32 @@ class TermInstallProgress(InstallProgress, gtk.Window):
self.reaper = vte.reaper_get()
self.reaper.connect("child-exited",self.child_exited)
self.finished = False
-
box.pack_start(self.term)
self.progressbar = gtk.ProgressBar()
self.progressbar.show()
box.pack_start(self.progressbar)
-
- (read, write) = os.pipe()
- self.writefd=write
- self.status = os.fdopen(read, "r")
- fcntl.fcntl(self.status.fileno(), fcntl.F_SETFL,os.O_NONBLOCK)
- print "read-fd: %s" % self.status.fileno()
- print "write-fd: %s" % self.writefd
- self.read = ""
-
def child_exited(self,term, pid, status):
print "child_exited: %s %s %s %s" % (self,term,pid,status)
self.apt_status = posix.WEXITSTATUS(status)
self.finished = True
-
def startUpdate(self):
print "start"
self.show()
- def updateInterface(self):
- if self.status != None:
- try:
- self.read += os.read(self.status.fileno(),1)
- except OSError, (errno,errstr):
- # resource temporarly unavailable is ignored
- if errno != 11:
- print errstr
- if self.read.endswith("\n"):
- s = self.read
- print s
- (status, pkg, percent, status_str) = string.split(s, ":")
- print "percent: %s %s" % (pkg, float(percent)/100.0)
- self.progressbar.set_fraction(float(percent)/100.0)
- self.progressbar.set_text(string.strip(status_str))
- self.read = ""
- while gtk.events_pending():
- gtk.main_iteration()
-
- def finishUpdate(self):
- sys.stdin.readline()
- def run(self, pm):
- print "fork"
- env = ["VTE_PTY_KEEP_FD=%s"%self.writefd]
- print env
- pid = self.term.forkpty(envv=env)
- if pid == 0:
- res = pm.DoInstall(self.writefd)
- print res
- sys.exit(res)
- print "After fork: %s " % pid
+ def waitChild(self):
while not self.finished:
self.updateInterface()
+ while gtk.events_pending():
+ gtk.main_iteration()
+ time.sleep(0.001)
+ sys.stdin.readline()
return self.apt_status
+ def statusChange(self, pkg, percent, status):
+ print "statusChange", pkg, percent
+ self.progressbar.set_fraction(float(percent)/100.0)
+ self.progressbar.set_text(string.strip(status))
+ def fork(self):
+ env = ["VTE_PTY_KEEP_FD=%s"%self.writefd]
+ return self.term.forkpty(envv=env)
cache = apt.Cache()
print "Available packages: %s " % cache._cache.PackageCount
diff --git a/doc/examples/update.py b/doc/examples/update.py
new file mode 100755
index 00000000..be7bb679
--- /dev/null
+++ b/doc/examples/update.py
@@ -0,0 +1,13 @@
+import apt
+import apt_pkg
+import os.path
+
+if __name__ == "__main__":
+ apt_pkg.Config.Set("APT::Update::Pre-Invoke::",
+ "touch /tmp/update-about-to-run")
+ apt_pkg.Config.Set("APT::Update::Post-Invoke::",
+ "touch /tmp/update-was-run")
+ c = apt.Cache()
+ res = c.update(apt.progress.TextFetchProgress())
+ print "res: ",res
+ assert(os.path.exists("/tmp/update-about-to-run"))
diff --git a/po/am.po b/po/am.po
index 673ed669..2427611b 100644
--- a/po/am.po
+++ b/po/am.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-09 15:49+0000\n"
"Last-Translator: Habte <adbaru@gmail.com>\n"
"Language-Team: Amharic <am@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,12 +303,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index 39265a8c..cbd177e3 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:14+0000\n"
"Last-Translator: Saleh Odeh <kirk.lock@gmail.com>\n"
"Language-Team: Arabic <ar@li.org>\n"
@@ -25,203 +25,223 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "ملاحظات الإصدار"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "تحديثات الإنترنت"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "مدعوم بشكل رسمي"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "حقوق نقل محدودة"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -278,7 +298,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -286,12 +306,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/be.po b/po/be.po
index d4c45847..b4e92d2c 100644
--- a/po/be.po
+++ b/po/be.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:05+0000\n"
"Last-Translator: Alexander Nyakhaychyk <nyakhaychyk@gmail.com>\n"
"Language-Team: Belarusian <be@li.org>\n"
@@ -26,201 +26,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -276,7 +296,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -284,12 +304,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/bg.po b/po/bg.po
index f0a7a011..f9b8f205 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:01+0000\n"
"Last-Translator: Nikola Kasabov <nikola.kasabov@gmail.com>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
@@ -26,226 +26,250 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 актуализации на сигурността"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 актуализации на сигурността"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 5.10 актуализации"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Поддържани от обществото (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Допринесен софтуер"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
#, fuzzy
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD с Ubuntu 4.10 „Warty Warthog“"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Поддържани от обществото (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Поддържани от обществото (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Поддържани от обществото (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "Несвободни (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Несвободни (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
#, fuzzy
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "Ubuntu 5.10 актуализации на сигурността"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "_Инсталиране на актуализациите"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "_Инсталиране на актуализациите"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 актуализации на сигурността"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 актуализации"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Състарени версии"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
#, fuzzy
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Официално поддържани"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.10 актуализации на сигурността"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.10 актуализации"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.10 Състарени версии"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "CD с Ubuntu 4.10 „Warty Warthog“"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Поддържани от обществото (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Несвободни (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
#, fuzzy
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD с Ubuntu 4.10 „Warty Warthog“"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Официално поддържан"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Ограничени авторски права"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 обновления по сигурността"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 обновления"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 5.10 Състарени версии"
@@ -309,7 +333,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Софтуер несъвместим с DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -317,12 +341,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/bn.po b/po/bn.po
index ee0a4818..1ad0054c 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:02+0000\n"
"Last-Translator: Khandakar Mujahidul Islam <suzan@bengalinux.org>\n"
"Language-Team: Bengali <bn@li.org>\n"
@@ -26,220 +26,244 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "উবুন্টু ৫.১০ আপডেট"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "ফ্রি নয় (মাল্টিভার্স)"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "ফ্রি নয় (মাল্টিভার্স)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "ফ্রি নয় (মাল্টিভার্স)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
#, fuzzy
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "আপডেট ইন্সটল করো (_I)"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "আপডেট ইন্সটল করো (_I)"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "উবুন্টু ৫.১০ আপডেট"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "অফিসিয়াল ভাবে সমর্থিত"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "উবুন্টু ৫.১০ আপডেট"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "ফ্রি নয় (মাল্টিভার্স)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
#, fuzzy
msgid "Ubuntu 4.10 Security Updates"
msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
#, fuzzy
msgid "Ubuntu 4.10 Updates"
msgstr "উবুন্টু ৫.১০ আপডেট"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট"
@@ -301,7 +325,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -309,12 +333,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/br.po b/po/br.po
index f8684645..6ed0348b 100644
--- a/po/br.po
+++ b/po/br.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-05-19 02:42+0000\n"
"Last-Translator: Oublieuse <oublieuse@gmail.com>\n"
"Language-Team: Breton <br@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,12 +303,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index 9d3fef77..cac1598c 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:14+0000\n"
"Last-Translator: Jordi Irazuzta <irazuzta@gmail.com>\n"
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
@@ -25,225 +25,249 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Actualitzacions de seguretat d'Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD amb Ubuntu 5.10 \"Breezy Badger\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Actualitzacions de seguretat d'Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD amb Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Actualitzacions d'Ubuntu 5.10"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Paquets mantinguts per la comunitat (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Programari de la comunitat"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
#, fuzzy
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Paquets mantinguts per la comunitat (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Paquets mantinguts per la comunitat (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Paquets mantinguts per la comunitat (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "Paquets sense llicència lliure (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Paquets sense llicència lliure (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
#, fuzzy
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "Debian Stable Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "_Instal·la les actualitzacions"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "_Instal·la les actualitzacions"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD amb Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Actualitzacions de seguretat d'Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Actualitzacions d'Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Actualitzacions d'Ubuntu 6.06 LTS"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
#, fuzzy
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Paquets mantinguts oficialment (Main)"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Actualitzacions de seguretat d'Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Actualitzacions d'Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "Actualitzacions d'Ubuntu 6.06 LTS"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Paquets mantinguts per la comunitat (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Paquets sense llicència lliure (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
#, fuzzy
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Algun programari ja no es mantindrà oficialment"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Paquets amb restriccions per copyright (Restricted)"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Actualitzacions de seguretat d'Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Actualitzacions d'Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "Actualitzacions d'Ubuntu 6.06 LTS"
@@ -306,7 +330,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Programari no compatible DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -314,12 +338,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Servidor principal"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
#, fuzzy
msgid "Custom servers"
msgstr "Servidor més proper"
diff --git a/po/cs.po b/po/cs.po
index cf748690..f92cc2bb 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-18 22:54+0000\n"
"Last-Translator: Dominik Sauer <Dominik.Sauer@gmail.com>\n"
"Language-Team: Czech <cs@li.org>\n"
@@ -27,209 +27,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cdrom s Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Bezpečnostní aktualizace Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Cdrom s Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Bezpečnostní aktualizace Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Cdrom s Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Udržováno komunitou"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Patentované (proprietární) ovladače zařízení"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Nesvobodný software"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Cdrom s Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Svobodný software oficiálně podporovaný společností Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Udržováno komunitou (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Software s otevřeným zdrojovým kódem, který je udržován komunitou"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Nesvobodné ovladače"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Patentované (proprietární) ovladače pro zařízení "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Software s omezující licencí (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Software omezený ochrannou známkou nebo jinými právními prostředky"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Cdrom s Ubuntu 6.06 LTS 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Důležité bezpečnostní aktualizace"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Doporučené aktualizace"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Navržené aktualizace"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Aktualizace přenesené z vyšších verzí distribuce"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Cdrom s Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Bezpečnostní aktualizace Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Aktualizace Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Software přenesený z vyšší verze distribuce na Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cdrom s Ubuntu 5.04 'Hoary Hedgehog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Oficiálně podporováno"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Bezpečnostní aktualizace Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Aktualizace Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Aplikace přenesené z vyšších verzí distribuce na Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Udržováno komunitou (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Nesvobodný (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cdrom s Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Již není oficiálně podporováno"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Omezený copyright"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Bezpečnostní aktualizace Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Aktualizace Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Aplikace přenesené z vyšších verzí distribuce na Ubuntu 4.10"
@@ -289,7 +313,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Software nekompatibilní s DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Server pro zemi \"%s\""
@@ -297,12 +321,12 @@ msgstr "Server pro zemi \"%s\""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Hlavní server"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Uživatelem vybrané servery"
diff --git a/po/csb.po b/po/csb.po
index 11bee656..31ff3ab7 100644
--- a/po/csb.po
+++ b/po/csb.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-08 04:10+0000\n"
"Last-Translator: Michôł Òstrowsczi <ostrowski.michal@gmail.com>\n"
"Language-Team: Kashubian <csb@li.org>\n"
@@ -26,202 +26,222 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "%s aktualizacëji"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -278,7 +298,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Serwera dlô kraju %s"
@@ -286,12 +306,12 @@ msgstr "Serwera dlô kraju %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Przédny serwera"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Jine serwerë"
diff --git a/po/da.po b/po/da.po
index 8bca0917..d67f517b 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 15:55+0000\n"
"Last-Translator: Lasse Bang Mikkelsen <lbm@fatalerror.dk>\n"
"Language-Team: Danish <da@li.org>\n"
@@ -26,209 +26,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 sikkerhedsopdateringer"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 sikkerhedsopdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 \"Edgy Eft\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Vedligeholdt af fællesskabet"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Proprietære drivere til enheder"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Ikke-frit software"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS \"Dapper Drake\""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Fri software understøttet af Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Vedligeholdt af fællesskabet (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Fri software vedligeholdt af fællesskabet"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Proprietære drivere"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Proprietære drivere til enheder "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Ikke-frit software (multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Software begrænset af ophavsret eller legale problemer"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Vigtige sikkerhedsopdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Anbefalede opdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Foreslåede opdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Tilbageporterede opdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 sikkerhedsopdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 opdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 tilbageporteringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Understøttet officielt"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 sikkerhedsopdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 opdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 tilbageporteringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Vedligeholdt af fællesskabet (universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Ikke-frit (multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Ikke længere officielt supporteret"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Begrænset ophavsret"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 sikkerhedsopdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 opdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 tilbageporteringer"
@@ -288,7 +312,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Ikke-DFSG-kompatibel software"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Server for %s"
@@ -296,12 +320,12 @@ msgstr "Server for %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Hovedserver"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Brugerdefinerede servere"
diff --git a/po/de.po b/po/de.po
index 0b9e0af5..caa0af9b 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2007-04-07 11:15+0200\n"
"Last-Translator: Sebastian Heinlein <ubuntu@glatzor.de>\n"
"Language-Team: German GNOME Translations <gnome-de@gnome.org>\n"
@@ -26,201 +26,225 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
+#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 »Hoary Hedgehog«"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD mit Ubuntu 5.04 »Hoary Hedgehog«"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 7.04 »Feisty Fawn«"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD mit Ubuntu 7.04 »Feisty Fawn«"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 7.04 »Feisty Fawn«"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD mit Ubuntu 7.04 »Feisty Fawn«"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 »Edgy Eft«"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr "Von der Ubuntu-Gemeinde betreut"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Proprietäre Gerätetreiber"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Eingeschränkte Software"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD mit Ubuntu 6.10 »Edgy Eft«"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS »Dapper Drake«"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr "Von Canonical unterstütze Open-Source-Software"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr "Von der Gemeinde betreut (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr "Von der Ubuntu-Gemeinde betreute Open-Source-Software"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Proprietäre Treiber"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Proprietäre Gerätetreiber "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Eingeschränkte Software (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Rechtlich eingeschränkte Software"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "CD mit Ubuntu 6.06 LTS »Dapper Drake«"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Wichtige Sicherheitsaktualisierungen"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Empfohlene Aktualisierungen"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr "Vorabveröffentlichte Aktualisierungen"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr "Nicht unterstütze Aktualisierungen"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 »Breezy Badger«"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD mit Ubuntu 5.10 »Breezy Badger«"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Aktualisierungen"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 »Hoary Hedgehog«"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD mit Ubuntu 5.04 »Hoary Hedgehog«"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Offiziell unterstützt"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 Aktualisierungen"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 »Warty Warthog«"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr "Von der Ubuntu-Gemeinde betreut (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Unfrei (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD-ROM mit Ubuntu 4.10 »Warty Warthog«"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Unterstützung ist ausgelaufen"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Eingeschränktes Copyright"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 Sicherheitsaktualisierungen"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 Aktualisierungen"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 Backports"
@@ -276,7 +300,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Nicht DFSG-kompatible Software"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Server für %s"
@@ -284,12 +308,12 @@ msgstr "Server für %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Haupt-Server"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Benutzerdefinierte Server"
@@ -443,8 +467,8 @@ msgstr "Benutzerdefinierte Server"
#~ " Please install one of the packages above first using synaptic or apt-get "
#~ "before proceeding."
#~ msgstr ""
-#~ "Ihr System enthält weder ein »ubuntu-desktop«-, ein»kubuntu-desktop»- "
-#~ "noch ein »edubuntu-desktop«-Paket. Daher konnte Ihre Ubuntu-Version nicht "
+#~ "Ihr System enthält weder ein »ubuntu-desktop«-, ein»kubuntu-desktop»- noch "
+#~ "ein »edubuntu-desktop«-Paket. Daher konnte Ihre Ubuntu-Version nicht "
#~ "ermittelt werden.\n"
#~ " Bitte installieren Sie eines der obigen Pakete über Synaptic oder apt-"
#~ "get, bevor Sie fortfahren."
@@ -1758,8 +1782,8 @@ msgstr "Benutzerdefinierte Server"
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
#~ msgstr ""
#~ "Dies bedeutet, dass einige Abhängigkeiten der installierten Pakete nicht "
-#~ "aufgelöst sind. Verwenden Sie bitte »Synaptic« oder »apt-get« zur "
-#~ "Behebung des Problems."
+#~ "aufgelöst sind. Verwenden Sie bitte »Synaptic« oder »apt-get« zur Behebung "
+#~ "des Problems."
#~ msgid "It is not possible to upgrade all packages."
#~ msgstr "Es ist nicht möglich, alle Pakete zu aktualisieren."
diff --git a/po/el.po b/po/el.po
index 15cbe529..3404a45c 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:13+0000\n"
"Last-Translator: Kostas Papadimas <pkst@gmx.net>\n"
"Language-Team: Greek <team@gnome.gr>\n"
@@ -25,210 +25,234 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cdrom με Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Cdrom με Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Cdrom με Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Community maintained"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Οδηγοί με κλειστό κώδικα για συσκευές"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Λογισμικό με περιορισμούς"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Cdrom με το Ubuntu 6.10 'Edgy Eft"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 TLS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Λογισμικό ανοικτού κώδικα υποστηριζόμενο από την Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Υποστηριζόμενα από την κοινότητα (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Community maintained Open Source software"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Όχι-ελεύθεροι οδηγοί"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Οδηγοί με κλειστό κώδικα για συσκευές "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Όχι-ελεύθερο (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Λογισμικό με περιορισμούς από πνευματικά δικαιώματα και νόμους"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Cdrom με Ubuntu 6.06 LTS 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Σημαντικές ενημερώσεις ασφαλείας"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Συνιστώμενες ενημερώσεις"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Προτεινόμενες ενημερώσεις"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Backported ενημερώσεις"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Cdrom με Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Αναβαθμίσεις Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cdrom με Ubuntu 5.04 \"Hoary Hedgehog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Officially supported"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ενημερώσεις Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Community maintained (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Όχι-ελεύθερα (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cdrom με το Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Δεν υποστηρίζονται πια επίσημα"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Περιορισμένα πνευματικά δικαιώματα"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ενημερώσεις ασφαλείας Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ενημερώσεις Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 Backports"
@@ -288,7 +312,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Λογισμικό μη συμβατό με DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Εξυπηρετητής για %s"
@@ -296,12 +320,12 @@ msgstr "Εξυπηρετητής για %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Κύριος εξυπηρετητής"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Προσαρμοσμένοι εξυπηρετητές"
diff --git a/po/en_AU.po b/po/en_AU.po
index 2c620c48..a4359516 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:01+0000\n"
"Last-Translator: David Satchell <david@davidsatchell.net>\n"
"Language-Team: English (Australia) <en_AU@li.org>\n"
@@ -26,209 +26,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD-ROM with Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 Security Updates"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD-ROM with Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD-ROM with Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Community maintained"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Proprietary drivers for devices"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Restricted software"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD-ROM with Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Community maintained Open Source software"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Community maintained (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Community maintained Open Source software"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Non-free drivers"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Proprietary drivers for devices "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Restricted software (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "CD-ROM with Ubuntu 6.06 LTS 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Important security updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Recommended updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Proposed updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Backported updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD-ROM with Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD-ROM with Ubuntu 5.04 'Hoary Hedgehog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Officially supported"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Community maintained (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Non-free (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD-ROM with Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Restricted copyright"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 Backports"
@@ -288,7 +312,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Non-DFSG-compatible Software"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Server for %s"
@@ -296,12 +320,12 @@ msgstr "Server for %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Main server"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Custom servers"
diff --git a/po/en_CA.po b/po/en_CA.po
index e84193f1..ab31fdb2 100644
--- a/po/en_CA.po
+++ b/po/en_CA.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:06+0000\n"
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
"Language-Team: Canadian English <adamw@gnome.org>\n"
@@ -26,230 +26,254 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
#: ../data/templates/Ubuntu.info.in:25
#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 Security Updates"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 Security Updates"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 Security Updates"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr "Ubuntu 5.04 Security Updates"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
+#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 5.04 Updates"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Community maintained (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Contributed software"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 5.04 Security Updates"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Community maintained (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Community maintained (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Community maintained (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "Non-free (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Non-free (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
#, fuzzy
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "_Install"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "_Install"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
#, fuzzy
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
#, fuzzy
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.04 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.04 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
#, fuzzy
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 Security Updates"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
#, fuzzy
msgid "Officially supported"
msgstr "Officially supported"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 5.04 Security Updates"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Community maintained (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Non-free (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Officially supported"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Restricted copyright"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
#, fuzzy
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 5.04 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 5.04 Updates"
@@ -309,7 +333,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -317,12 +341,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/en_GB.po b/po/en_GB.po
index a99cfda9..b838b766 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:14+0000\n"
"Last-Translator: Jeff Bailes <thepizzaking@gmail.com>\n"
"Language-Team: \n"
@@ -25,209 +25,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 Security Updates"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Cdrom with Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Cdrom with Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Community maintained"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Proprietary drivers for devices"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Restricted software"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Cdrom with Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Canonical supported Open Source software"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Community maintained (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Community maintained Open Source software"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Non-free drivers"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Proprietary drivers for devices "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Restricted software (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Software restricted by copyright or legal issues"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Important security updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Recommended updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Proposed updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Backported updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Cdrom with Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Officially supported"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Community maintained (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Non-free (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cdrom with Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "No longer officially supported"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Restricted copyright"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 Backports"
@@ -289,7 +313,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Non-DFSG-compatible Software"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Server for %s"
@@ -297,12 +321,12 @@ msgstr "Server for %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Main server"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Custom servers"
diff --git a/po/eo.po b/po/eo.po
index 324d644b..3101810f 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:05+0000\n"
"Last-Translator: Ed Glez <herzo2@gmail.com>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Oficiale subtenata"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -276,7 +296,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -284,12 +304,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/es.po b/po/es.po
index 70459807..84606f96 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: es\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:15+0000\n"
"Last-Translator: Ricardo Pérez López <ricardo@iesdonana.org>\n"
"Language-Team: Spanish <traductores@gnome.org>\n"
@@ -28,209 +28,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 «Hoary Hedgehog»"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Actualizaciones de seguridad de Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Actualizaciones de seguridad de Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 «Edgy Eft»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Mantenido por la comunidad"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Controladores privativos para dispositivos"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Software restringido"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS «Dapper Drake»"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Software libre soportado por Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Mantenido por la comunidad (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Software libre mantenido por la comunidad"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Controladores no libres"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Controladores privativos para dispositivos "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Software restringido (multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Software restringido por copyright o cuestiones legales"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "CD-ROM con Ubuntu 6.06 LTS «Dapper Drake»"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Actualizaciones importantes de seguridad"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Actualizaciones recomendadas"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Actualizaciones propuestas"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Actualizaciones «backport»"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 «Breezy Badger»"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Actualizaciones de seguridad de Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Actualizaciones de Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "«Backports» de Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 «Hoary Hedgehog»"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Soportado oficialmente"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Actualizaciones de seguridad de Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Actualizaciones de Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "«Backports» de Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 «Warty Warthog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Mantenido por la comunidad (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Software no libre (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Sin más soporte oficial"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Copyright restringido"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 Actualizaciones de seguridad"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Actualizaciones de Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "«Backports» de Ubuntu 4.10"
@@ -290,7 +314,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Software no compatible con la DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Servidor para %s"
@@ -298,12 +322,12 @@ msgstr "Servidor para %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Servidor principal"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Servidores personalizados"
@@ -547,9 +571,9 @@ msgstr "Servidores personalizados"
#~ "enable them after the upgrade with the 'software-properties' tool or with "
#~ "synaptic."
#~ msgstr ""
-#~ "Se han desactivado algunas entradas de terceros proveedores en su "
-#~ "«sources.list». Puede volver a activarlas tras la actualización con la "
-#~ "herramienta «Propiedades del software», o con Synaptic."
+#~ "Se han desactivado algunas entradas de terceros proveedores en su «sources."
+#~ "list». Puede volver a activarlas tras la actualización con la herramienta "
+#~ "«Propiedades del software», o con Synaptic."
#~ msgid "Error during update"
#~ msgstr "Error durante la actualización"
@@ -620,8 +644,8 @@ msgstr "Servidores personalizados"
#~ "software. Todavía podrá obtener soporte de la comunidad.\n"
#~ "\n"
#~ "Si no tiene habilitado el software mantenido por la comunidad "
-#~ "(«universe»), se le sugerirá que desinstale estos paquetes en el "
-#~ "siguiente paso."
+#~ "(«universe»), se le sugerirá que desinstale estos paquetes en el siguiente "
+#~ "paso."
#~ msgid "Remove obsolete packages?"
#~ msgstr "¿Desinstalar los paquetes obsoletos?"
@@ -754,8 +778,8 @@ msgstr "Servidores personalizados"
#~ "Por favor, informe de esto como un fallo e incluya los archivos /var/log/"
#~ "dist-upgrade.log y /var/log/dist-upgrade-apt.log en su informe. La "
#~ "actualización se cancelará ahora.\n"
-#~ "Su archivo «sources.list» original se ha guardado en /etc/apt/sources."
-#~ "list.distUpgrade."
+#~ "Su archivo «sources.list» original se ha guardado en /etc/apt/sources.list."
+#~ "distUpgrade."
#~ msgid "%d package is going to be removed."
#~ msgid_plural "%d packages are going to be removed."
@@ -1495,8 +1519,7 @@ msgstr "Servidores personalizados"
#~ msgid ""
#~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
#~ msgstr ""
-#~ "Por favor, cierre primero la otra aplicación (ej: «aptitude» o "
-#~ "«Synaptic»)."
+#~ "Por favor, cierre primero la otra aplicación (ej: «aptitude» o «Synaptic»)."
#~ msgid "<b>Channels</b>"
#~ msgstr "<b>Canales</b>"
diff --git a/po/et.po b/po/et.po
index 02d4129f..cd599187 100644
--- a/po/et.po
+++ b/po/et.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-09 15:49+0000\n"
"Last-Translator: margus723 <margus723@hot.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,12 +303,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/eu.po b/po/eu.po
index 954857ad..3fbb309b 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-09 15:49+0000\n"
"Last-Translator: Xabi Ezpeleta <xezpeleta@mendikute.com>\n"
"Language-Team: Basque <eu@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,12 +303,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 43e4fb8a..2e433e45 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-09 15:49+0000\n"
"Last-Translator: Pedram Ganjeh Hadidi <pedram.ganjeh-hadidi@students.jku."
"at>\n"
@@ -26,201 +26,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -276,7 +296,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -284,12 +304,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 16bcf1fa..6e37c50f 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-23 12:24+0000\n"
"Last-Translator: Timo Jyrinki <timo.jyrinki@iki.fi>\n"
"Language-Team: Finnish <ubuntu-fi@lists.ubuntu.com>\n"
@@ -25,209 +25,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 \"Hoary Hedgehog\" -CD-levy"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 turvallisuuspäivitykset"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 \"Breezy Badger\" -CD-levy"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 turvallisuuspäivitykset"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 \"Breezy Badger\" -CD-levy"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 \"Edgy Eft\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Yhteisön ylläpitämät"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Suljetut laiteajurit"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Rajoitetut ohjelmistot"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 \"Edgy Eft\" -CD-levy"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS \"Dapper Drake\""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmistot"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Yhteisön ylläpitämät (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Yhteisön ylläpitämät avoimen lähdekoodin ohjelmistot"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Ei-vapaat ajurit"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Suljetut laiteajurit "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Käyttörajoitetut ohjelmistot (multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Tekijänoikeus- tai lakiasioilla rajoitetut ohjelmistot"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS \"Dapper Drake\" -CD-levy"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Tärkeät turvallisuuspäivitykset"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Suositellut päivitykset"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Ehdotetut päivitykset"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Takaisinsovitetut päivitykset"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 \"Breezy Badger\" -CD-levy"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 turvallisuuspäivitykset"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 päivitykset"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 takaisinsovitukset"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 \"Hoary Hedgehog\" -CD-levy"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Virallisesti tuettu"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 turvallisuuspäivitykset"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 päivitykset"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 takaisinsovitukset"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Yhteisön ylläpitämät (universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Ei-vapaat ohjelmistot (multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 \"Warty Warthog\" -CD-levy"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Ei enää virallisesti tuettu"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Rajoitettu käyttöoikeus"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 turvallisuuspäivitykset"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 päivitykset"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 takaisinsovitukset"
@@ -288,7 +312,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "DFSG-epäyhteensopivat ohjelmistot"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Palvelin maalle: %s"
@@ -296,12 +320,12 @@ msgstr "Palvelin maalle: %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Pääpalvelin"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Määrittele palvelin"
diff --git a/po/fr.po b/po/fr.po
index c3dd6e20..437f5a75 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: python-apt 0.7.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-04-07 10:08+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2007-06-25 12:12+0100\n"
"Last-Translator: Hugues NAULET <hnaulet@gmail.com>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -25,202 +25,225 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
+#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 « Hoary Hedgehog »"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD-ROM contenant Ubuntu 5.04 « Hoary Hedgehog »"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 7.04 « Feisty Fawn »"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD-ROM contenant Ubuntu 7.04 « Feisty Fawn »"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 7.04 « Feisty Fawn »"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD-ROM contenant Ubuntu 7.04 « Feisty Fawn »"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 « Edgy Eft »"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr "Maintenu par la communauté"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Pilotes propriétaires de périphériques"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Logiciel non libre"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD-ROM contenant Ubuntu 6.10 « Edgy Eft »"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS « Dapper Drake »"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr "Logiciel libre maintenu par Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr "Maintenu par la communauté (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr "Logiciel libre maintenu par la communauté"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Pilotes non libres"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Pilotes propriétaires de périphériques "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Logiciel non libre (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Logiciel soumis au droit d'auteur ou à des restrictions légales"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "CD-ROM contenant Ubuntu 6.06 LTS « Dapper Drake »"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Mises à jour de sécurité"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Mises à jour recommandées"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr "Mises à jour suggérées"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr "Mises à jour non gérées"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 « Breezy Badger »"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD-ROM contenant Ubuntu 5.10 « Breezy Badger »"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Mises à jour de sécurité pour Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Mises à jour pour Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "« Backports » pour Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 « Hoary Hedgehog »"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD-ROM contenant Ubuntu 5.04 « Hoary Hedgehog »"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219
-#: ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Supporté officiellement"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Mises à jour de sécurité pour Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Mises à jour pour Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "« Backports » pour Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 « Warty Warthog »"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr "Maintenu par la communauté (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Non libre (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD-ROM contenant Ubuntu 4.10 « Warty Warthog »"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Support officiel terminé"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Copyright restreint"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Mises à jour de sécurité pour Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Mises à jour pour Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "« Backports » pour Ubuntu 4.10"
@@ -267,9 +290,8 @@ msgstr "Debian « Sid » (unstable)"
#. CompDescription
#: ../data/templates/Debian.info.in:96
-msgid ""
-"DFSG-compatible Software with Non-Free Dependencies"
-msgstr ""
+msgid "DFSG-compatible Software with Non-Free Dependencies"
+msgstr ""
"Logiciel libre (selon les lignes directrices du projet Debian) dont les "
"dépendances ne sont pas libres"
@@ -279,7 +301,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:343
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Serveur pour %s"
@@ -287,63 +309,83 @@ msgstr "Serveur pour %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:355
-#: ../aptsources/distro.py:360
-#: ../aptsources/distro.py:374
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Serveur principal"
-#: ../aptsources/distro.py:377
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Serveurs personnalisés"
#~ msgid "Daily"
#~ msgstr "Quotidiennement"
+
#~ msgid "Every two days"
#~ msgstr "Tous les deux jours"
+
#~ msgid "Weekly"
#~ msgstr "Hebdomadaire"
+
#~ msgid "Every two weeks"
#~ msgstr "Toutes les deux semaines"
+
#~ msgid "Every %s days"
#~ msgstr "Tous les %s jours"
+
#~ msgid "After one week"
#~ msgstr "Après une semaine"
+
#~ msgid "After two weeks"
#~ msgstr "Après deux semaines"
+
#~ msgid "After one month"
#~ msgstr "Après un mois"
+
#~ msgid "After %s days"
#~ msgstr "Après %s jours"
+
#~ msgid "%s updates"
#~ msgstr "Mises à jour %s"
+
#~ msgid "%s (%s)"
#~ msgstr "%s (%s)"
+
#~ msgid "Nearest server"
#~ msgstr "Serveur le plus proche"
+
#~ msgid "Software Channel"
#~ msgstr "Source de mise à jour"
+
#~ msgid "Active"
#~ msgstr "Actif"
+
#~ msgid "(Source Code)"
#~ msgstr "(Code Source)"
+
#~ msgid "Source Code"
#~ msgstr "Code Source"
+
#~ msgid "Import key"
#~ msgstr "Importer la clé"
+
#~ msgid "Error importing selected file"
#~ msgstr "Erreur lors du chargement du fichier sélectionné"
+
#~ msgid "The selected file may not be a GPG key file or it might be corrupt."
#~ msgstr ""
#~ "Le fichier sélectionné n'est peut-être pas une clé GPG ou alors il est "
#~ "corrompu."
+
#~ msgid "Error removing the key"
#~ msgstr "Erreur lors de la suppression de la clé"
+
#~ msgid ""
#~ "The key you selected could not be removed. Please report this as a bug."
#~ msgstr ""
#~ "La clé que vous avez sélectionnée ne peut être supprimée. Veuillez "
#~ "rapporter ce bogue."
+
#~ msgid ""
#~ "<big><b>Error scanning the CD</b></big>\n"
#~ "\n"
@@ -352,12 +394,16 @@ msgstr "Serveurs personnalisés"
#~ "<big><b>Erreur lors de l'analyse du CD</b></big>\n"
#~ "\n"
#~ "%s"
+
#~ msgid "Please enter a name for the disc"
#~ msgstr "Veuillez saisir un nom pour le disque"
+
#~ msgid "Please insert a disc in the drive:"
#~ msgstr "Veuillez insérer un disque dans le lecteur :"
+
#~ msgid "Broken packages"
#~ msgstr "Paquets défectueux"
+
#~ msgid ""
#~ "Your system contains broken packages that couldn't be fixed with this "
#~ "software. Please fix them first using synaptic or apt-get before "
@@ -366,12 +412,16 @@ msgstr "Serveurs personnalisés"
#~ "Votre système contient des paquets défectueux qui n'ont pu être réparés "
#~ "avec ce logiciel. Veuillez d'abord les réparer à l'aide de Synaptic ou "
#~ "d'apt-get avant de continuer."
+
#~ msgid "Can't upgrade required meta-packages"
#~ msgstr "Les meta-paquets désirés n'ont pu être mis à jour"
+
#~ msgid "A essential package would have to be removed"
#~ msgstr "Un paquet essentiel devrait être enlevé"
+
#~ msgid "Could not calculate the upgrade"
#~ msgstr "Impossible de calculer la mise à jour"
+
#~ msgid ""
#~ "A unresolvable problem occurred while calculating the upgrade.\n"
#~ "\n"
@@ -382,8 +432,10 @@ msgstr "Serveurs personnalisés"
#~ "\n"
#~ "Merci de rapporter ce bogue du paquet « update-manager » et d'inclure les "
#~ "fichiers de /var/log/dist-upgrade/ dans le rapport de bogue."
+
#~ msgid "Error authenticating some packages"
#~ msgstr "Erreur lors de l'authentification de certains paquets"
+
#~ msgid ""
#~ "It was not possible to authenticate some packages. This may be a "
#~ "transient network problem. You may want to try again later. See below for "
@@ -393,16 +445,20 @@ msgstr "Serveurs personnalisés"
#~ "d'un problème temporaire du réseau. Vous voudrez sans doute réessayer "
#~ "plus tard. Vous trouverez ci-dessous une liste des paquets non "
#~ "authentifiés."
+
#~ msgid "Can't install '%s'"
#~ msgstr "Impossible d'installer « %s »"
+
#~ msgid ""
#~ "It was impossible to install a required package. Please report this as a "
#~ "bug. "
#~ msgstr ""
#~ "Il a été impossible d'installer un paquet pourtant requis. Merci de "
#~ "rapporter ce bogue. "
+
#~ msgid "Can't guess meta-package"
#~ msgstr "Impossible de déterminer le méta-paquet"
+
#~ msgid ""
#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or "
#~ "edubuntu-desktop package and it was not possible to detect which version "
@@ -415,8 +471,10 @@ msgstr "Serveurs personnalisés"
#~ "la version d'Ubuntu que vous utilisez.\n"
#~ " Veuillez d'abord installer l'un des paquets ci-dessus, en utilisant "
#~ "Synaptic ou apt-get, avant de continuer."
+
#~ msgid "Failed to add the CD"
#~ msgstr "Impossible d'ajouter le CD"
+
#~ msgid ""
#~ "There was a error adding the CD, the upgrade will abort. Please report "
#~ "this as a bug if this is a valid Ubuntu CD.\n"
@@ -429,11 +487,14 @@ msgstr "Serveurs personnalisés"
#~ "\n"
#~ "Le message d'erreur est :\n"
#~ "« %s »"
+
#~ msgid "Reading cache"
#~ msgstr "Lecture du cache"
+
#~ msgid "Fetch data from the network for the upgrade?"
#~ msgstr ""
#~ "Télécharger les données depuis le réseau pour effectuer la mise à jour ?"
+
#~ msgid ""
#~ "The upgrade can use the network to check the latest updates and to fetch "
#~ "packages that are not on the current CD.\n"
@@ -445,8 +506,10 @@ msgstr "Serveurs personnalisés"
#~ "Si vous avez une connexion internet rapide ou bon marché, vous devriez "
#~ "répondre « oui ». Par contre, si votre connexion internet est lente ou "
#~ "trop chère, répondez « non »."
+
#~ msgid "No valid mirror found"
#~ msgstr "Aucun mirroir valide trouvé"
+
#~ msgid ""
#~ "While scaning your repository information no mirror entry for the upgrade "
#~ "was found.This cam happen if you run a internal mirror or if the mirror "
@@ -464,8 +527,10 @@ msgstr "Serveurs personnalisés"
#~ "Souhaitez-vous que votre « sources.list » soit malgré tout réécrit ? Si "
#~ "oui, cela mettra à jour toutes les entrées « %s » vers « %s ».\n"
#~ "Sinon, la mise à jour sera annulée."
+
#~ msgid "Generate default sources?"
#~ msgstr "Générer les sources par défaut ?"
+
#~ msgid ""
#~ "After scanning your 'sources.list' no valid entry for '%s' was found.\n"
#~ "\n"
@@ -477,16 +542,20 @@ msgstr "Serveurs personnalisés"
#~ "\n"
#~ "Les entrées par défaut pour « %s » doivent-elles être ajoutées ? Si vous "
#~ "sélectionnez « Non », la mise à jour sera annulée."
+
#~ msgid "Repository information invalid"
#~ msgstr "Information sur le dépôt invalide"
+
#~ msgid ""
#~ "Upgrading the repository information resulted in a invalid file. Please "
#~ "report this as a bug."
#~ msgstr ""
#~ "La mise à jour des informations du dépôt a créé un fichier invalide. "
#~ "Merci de rapporter ce bogue."
+
#~ msgid "Third party sources disabled"
#~ msgstr "Sources provenant de tiers désactivées"
+
#~ msgid ""
#~ "Some third party entries in your sources.list were disabled. You can re-"
#~ "enable them after the upgrade with the 'software-properties' tool or with "
@@ -495,8 +564,10 @@ msgstr "Serveurs personnalisés"
#~ "Certaines entrées de votre fichier sources.list provenant de tiers ont "
#~ "été désactivées. Vous pouvez les réactiver après la mise à jour avec "
#~ "l'outil « Gestionnaire de canaux logiciels » ou avec Synaptic."
+
#~ msgid "Error during update"
#~ msgstr "Erreur lors de la mise à jour"
+
#~ msgid ""
#~ "A problem occured during the update. This is usually some sort of network "
#~ "problem, please check your network connection and retry."
@@ -504,8 +575,10 @@ msgstr "Serveurs personnalisés"
#~ "Un problème est survenu lors de la mise à jour. Ceci est généralement dû "
#~ "à un problème de réseau. Veuillez vérifier votre connexion au réseau et "
#~ "réessayer."
+
#~ msgid "Not enough free disk space"
#~ msgstr "Pas assez d'espace libre sur le disque"
+
#~ msgid ""
#~ "The upgrade aborts now. Please free at least %s of disk space on %s. "
#~ "Empty your trash and remove temporary packages of former installations "
@@ -514,10 +587,13 @@ msgstr "Serveurs personnalisés"
#~ "Abandon de la mise à jour. Veuillez libérer au moins %s d'espace disque "
#~ "sur %s. Videz la corbeille et supprimez les paquets temporaires des "
#~ "installations effectuées en utilisant la commande « sudo apt-get clean »."
+
#~ msgid "Do you want to start the upgrade?"
#~ msgstr "Voulez-vous commencer la mise à jour ?"
+
#~ msgid "Could not install the upgrades"
#~ msgstr "Les mises à jour n'ont pu être installées"
+
#~ msgid ""
#~ "The upgrade aborts now. Your system could be in an unusable state. A "
#~ "recovery was run (dpkg --configure -a).\n"
@@ -531,16 +607,20 @@ msgstr "Serveurs personnalisés"
#~ "Veuillez signaler ceci comme un bogue du paquet « update-manager » et "
#~ "joindre les fichiers du répertoire /var/log/dist-upgrade dans le rapport "
#~ "de bogue."
+
#~ msgid "Could not download the upgrades"
#~ msgstr "Les mises à jour n'ont pu être téléchargées"
+
#~ msgid ""
#~ "The upgrade aborts now. Please check your internet connection or "
#~ "installation media and try again. "
#~ msgstr ""
#~ "Abandon de la mise à jour. Veuillez vérifier votre connexion Internet ou "
#~ "votre médium d'installation puis réessayez. "
+
#~ msgid "Support for some applications ended"
#~ msgstr "La prise en charge de certaines applications a pris fin"
+
#~ msgid ""
#~ "Canonical Ltd. no longer provides support for the following software "
#~ "packages. You can still get support from the community.\n"
@@ -554,28 +634,38 @@ msgstr "Serveurs personnalisés"
#~ "\n"
#~ "Si vous n'avez pas activé le dépôt « universe », la suppression de ces "
#~ "paquets vous sera suggérée lors de la prochaine étape."
+
#~ msgid "Remove obsolete packages?"
#~ msgstr "Enlever les paquets obsolètes ?"
+
#~ msgid "_Skip This Step"
#~ msgstr "_Passer cette étape"
+
#~ msgid "_Remove"
#~ msgstr "_Supprimer"
+
#~ msgid "Error during commit"
#~ msgstr "Erreur pendant la soumission"
+
#~ msgid ""
#~ "Some problem occured during the clean-up. Please see the below message "
#~ "for more information. "
#~ msgstr ""
#~ "Un problème est survenu lors du nettoyage. Veuillez vous reporter au "
#~ "message ci-dessous pour plus d'informations. "
+
#~ msgid "Restoring original system state"
#~ msgstr "Restaurer le système dans son état d'origine"
+
#~ msgid "Fetching backport of '%s'"
#~ msgstr "Recherche du backport (rétro-portage) de « %s »"
+
#~ msgid "Checking package manager"
#~ msgstr "Vérification du gestionnaire de paquets"
+
#~ msgid "Preparing the upgrade failed"
#~ msgstr "Échec lors de la préparation de la mise à jour"
+
#~ msgid ""
#~ "Preparing the system for the upgrade failed. Please report this as a bug "
#~ "against the 'update-manager' package and include the files in /var/log/"
@@ -584,10 +674,13 @@ msgstr "Serveurs personnalisés"
#~ "Échec lors de la préparation de la mise à jour du système. Merci de faire "
#~ "remonter ce bug concernant le paquet 'update manager' et d'inclure les "
#~ "fichiers contenus dans le dossier /var/log/dist-upgrade/ à votre rapport."
+
#~ msgid "Updating repository information"
#~ msgstr "Mise à jour des informations sur les dépôts en cours"
+
#~ msgid "Invalid package information"
#~ msgstr "Information sur le paquet invalide"
+
#~ msgid ""
#~ "After your package information was updated the essential package '%s' can "
#~ "not be found anymore.\n"
@@ -600,28 +693,40 @@ msgstr "Serveurs personnalisés"
#~ "Ceci indique qu'une erreur importante s'est produite, veuillez signaler "
#~ "ceci comme un bogue du paquet « update-manager » et joindre les fichiers "
#~ "du répertoire /var/log/dist-upgrade dans le rapport de bogue."
+
#~ msgid "Asking for confirmation"
#~ msgstr "Demande de confirmation"
+
#~ msgid "Upgrading"
#~ msgstr "Mise à jour en cours"
+
#~ msgid "Searching for obsolete software"
#~ msgstr "Recherche de logiciels obsolètes"
+
#~ msgid "System upgrade is complete."
#~ msgstr "La mise à jour du système est terminée."
+
#~ msgid "Please insert '%s' into the drive '%s'"
#~ msgstr "Veuillez insérer « %s » dans le lecteur « %s »"
+
#~ msgid "Fetching is complete"
#~ msgstr "La récupération des fichiers est terminée"
+
#~ msgid "Fetching file %li of %li at %s/s"
#~ msgstr "Téléchargement du fichier %li sur %li en cours à %s/s"
+
#~ msgid "About %s remaining"
#~ msgstr "Environ %s restantes"
+
#~ msgid "Fetching file %li of %li"
#~ msgstr "Téléchargement du fichier %li sur %li en cours"
+
#~ msgid "Applying changes"
#~ msgstr "Application des changements"
+
#~ msgid "Could not install '%s'"
#~ msgstr "Impossible d'installer « %s »"
+
#~ msgid ""
#~ "The upgrade aborts now. Please report this bug against the 'update-"
#~ "manager' package and include the files in /var/log/dist-upgrade/ in the "
@@ -630,22 +735,27 @@ msgstr "Serveurs personnalisés"
#~ "La mise à jour va être interrompue maintenant. Veuillez signaler ceci "
#~ "comme un bogue du paquet « update-manager » et joindre les fichiers du "
#~ "répertoire /var/log/dist-upgrade/ dans le rapport de bogue."
+
#~ msgid ""
#~ "Replace the customized configuration file\n"
#~ "'%s'?"
#~ msgstr ""
#~ "Remplacer le fichier de configuration personnalisé\n"
#~ "« %s » ?"
+
#~ msgid ""
#~ "You will lose any changes you have made to this configuration file if you "
#~ "choose to replace it with a newer version."
#~ msgstr ""
#~ "Toutes les modifications apportées à ce fichier de configuration seront "
#~ "perdues si vous décidez de le remplacer par une version plus récente."
+
#~ msgid "The 'diff' command was not found"
#~ msgstr "La commande « diff » n'a pu être trouvée"
+
#~ msgid "A fatal error occured"
#~ msgstr "Une erreur fatale est survenue"
+
#~ msgid ""
#~ "Please report this as a bug and include the files /var/log/dist-upgrade/"
#~ "main.log and /var/log/dist-upgrade/apt.log in your report. The upgrade "
@@ -657,18 +767,22 @@ msgstr "Serveurs personnalisés"
#~ "annulée.\n"
#~ "Votre fichier sources.list d'origine a été enregistré dans /etc/apt/"
#~ "sources.list.distUpgrade."
+
#~ msgid "%d package is going to be removed."
#~ msgid_plural "%d packages are going to be removed."
#~ msgstr[0] "%d paquet va être supprimé."
#~ msgstr[1] "%d paquets vont être supprimés."
+
#~ msgid "%d new package is going to be installed."
#~ msgid_plural "%d new packages are going to be installed."
#~ msgstr[0] "%d nouveau paquet va être installé."
#~ msgstr[1] "%d nouveaux paquets vont être installés."
+
#~ msgid "%d package is going to be upgraded."
#~ msgid_plural "%d packages are going to be upgraded."
#~ msgstr[0] "%d paquet va être mis à jour."
#~ msgstr[1] "%d paquets vont être mis à jour."
+
#~ msgid ""
#~ "\n"
#~ "\n"
@@ -677,54 +791,70 @@ msgstr "Serveurs personnalisés"
#~ "\n"
#~ "\n"
#~ "Vous avez à télécharger un total de %s. "
+
#~ msgid ""
#~ "Fetching and installing the upgrade can take several hours and cannot be "
#~ "canceled at any time later."
#~ msgstr ""
#~ "La récupération et l'installation de la mise à jour peuvent prendre "
#~ "plusieurs heures et l'opération ne peut être annulée ultérieurement."
+
#~ msgid "To prevent data loss close all open applications and documents."
#~ msgstr ""
#~ "Pour éviter toute perte de données accidentelle, veuillez fermer toutes "
#~ "les applications et documents ouverts."
+
#~ msgid "Your system is up-to-date"
#~ msgstr "Votre système est à jour"
+
#~ msgid ""
#~ "There are no upgrades available for your system. The upgrade will now be "
#~ "canceled."
#~ msgstr ""
#~ "Il n'y a pas de mises à niveau disponibles pour votre système. La mise à "
#~ "niveau va maintenant être annulée."
+
#~ msgid "<b>Remove %s</b>"
#~ msgstr "<b>Supprimer %s</b>"
+
#~ msgid "Install %s"
#~ msgstr "Installer %s"
+
#~ msgid "Upgrade %s"
#~ msgstr "Mettre à jour %s"
+
#~ msgid "%li days %li hours %li minutes"
#~ msgstr "%li jours %li heures %li minutes"
+
#~ msgid "%li hours %li minutes"
#~ msgstr "%li heures %li minutes"
+
#~ msgid "%li minutes"
#~ msgstr "%li minutes"
+
#~ msgid "%li seconds"
#~ msgstr "%li secondes"
+
#~ msgid ""
#~ "This download will take about %s with a 1Mbit DSL connection and about %s "
#~ "with a 56k modem"
#~ msgstr ""
#~ "Ce téléchargement prendra environ %s avec une connexion Dsl 1 Mbits et "
#~ "environ %s avec un modem 56k"
+
#~ msgid "Reboot required"
#~ msgstr "Redémarrage de l'ordinateur requis"
+
#~ msgid ""
#~ "The upgrade is finished and a reboot is required. Do you want to do this "
#~ "now?"
#~ msgstr ""
#~ "La mise à jour est terminée et le redémarrage de l'ordinateur est requis. "
#~ "Voulez-vous le faire dès maintenant ?"
+
#~ msgid " "
#~ msgstr " "
+
#~ msgid ""
#~ "<b><big>Cancel the running upgrade?</big></b>\n"
#~ "\n"
@@ -735,150 +865,209 @@ msgstr "Serveurs personnalisés"
#~ "\n"
#~ "Le système pourrait devenir inutilisable si vous annulez la mise à jour. "
#~ "Il vous est fortement conseillé de reprendre la mise à jour."
+
#~ msgid "<b><big>Restart the system to complete the upgrade</big></b>"
#~ msgstr ""
#~ "<b><big>Redémarrez votre système pour terminer la mise à jour</big></b>"
+
#~ msgid "<b><big>Start the upgrade?</big></b>"
#~ msgstr "<b><big>Démarrer la mise à jour ?</big></b>"
+
#~ msgid "<b><big>Upgrading Ubuntu to version 6.10</big></b>"
#~ msgstr "<b><big>Mise à jour d'Ubuntu vers la version 6.10</big></b>"
+
#~ msgid "Cleaning up"
#~ msgstr "Nettoyage"
+
#~ msgid "Details"
#~ msgstr "Détails"
+
#~ msgid "Difference between the files"
#~ msgstr "Différence entre les fichiers"
+
#~ msgid "Fetching and installing the upgrades"
#~ msgstr "Téléchargement et installation des mises à jour en cours"
+
#~ msgid "Modifying the software channels"
#~ msgstr "Modification des canaux logiciels"
+
#~ msgid "Preparing the upgrade"
#~ msgstr "Préparation de la mise à jour"
+
#~ msgid "Restarting the system"
#~ msgstr "Redémarrage du système"
+
#~ msgid "Terminal"
#~ msgstr "Terminal"
+
#~ msgid "_Cancel Upgrade"
#~ msgstr "_Annuler la mise à jour"
+
#~ msgid "_Continue"
#~ msgstr "_Continuer"
+
#~ msgid "_Keep"
#~ msgstr "_Conserver"
+
#~ msgid "_Replace"
#~ msgstr "_Remplacer"
+
#~ msgid "_Report Bug"
#~ msgstr "_Rapporter un bogue"
+
#~ msgid "_Restart Now"
#~ msgstr "_Redémarrer Maintenant"
+
#~ msgid "_Resume Upgrade"
#~ msgstr "_Reprendre la mise à jour"
+
#~ msgid "_Start Upgrade"
#~ msgstr "_Démarrer la mise à jour"
+
#~ msgid "Could not find the release notes"
#~ msgstr "Impossible de trouver les informations de version"
+
#~ msgid "The server may be overloaded. "
#~ msgstr "Le serveur est peut-être surchargé. "
+
#~ msgid "Could not download the release notes"
#~ msgstr "Impossible de télécharger les informations de version"
+
#~ msgid "Please check your internet connection."
#~ msgstr "Veuillez vérifier votre connexion Internet."
+
#~ msgid "Could not run the upgrade tool"
#~ msgstr "Impossible de lancer l'outil de mise à jour"
+
#~ msgid ""
#~ "This is most likely a bug in the upgrade tool. Please report it as a bug"
#~ msgstr ""
#~ "Un problème insoluble est apparu lors du calcul de la mise à jour. Merci "
#~ "de rapporter ce bogue."
+
#~ msgid "Downloading the upgrade tool"
#~ msgstr "Téléchargement de l'outil de mise à jour"
+
#~ msgid "The upgrade tool will guide you through the upgrade process."
#~ msgstr "Cet outil vous guidera à travers le processus de mise à jour"
+
#~ msgid "Upgrade tool signature"
#~ msgstr "Signature de l'outil de mise à jour"
+
#~ msgid "Upgrade tool"
#~ msgstr "Outil de mise à jour"
+
#~ msgid "Failed to fetch"
#~ msgstr "Impossible d'établir la connexion"
+
#~ msgid "Fetching the upgrade failed. There may be a network problem. "
#~ msgstr ""
#~ "La recherche de la mise à jour à échoué. Il y a peut-être un problème "
#~ "réseau. "
+
#~ msgid "Failed to extract"
#~ msgstr "Impossible d'extraire"
+
#~ msgid ""
#~ "Extracting the upgrade failed. There may be a problem with the network or "
#~ "with the server. "
#~ msgstr ""
#~ "L'extraction de la mise à jour a échoué. Il y a peut-être un problème de "
#~ "réseau ou avec le serveur. "
+
#~ msgid "Verfication failed"
#~ msgstr "Échec de la vérification"
+
#~ msgid ""
#~ "Verifying the upgrade failed. There may be a problem with the network or "
#~ "with the server. "
#~ msgstr ""
#~ "La vérification de la mise à jour a échoué. Il y a peut-être un problème "
#~ "avec le réseau ou avec le serveur. "
+
#~ msgid "Authentication failed"
#~ msgstr "Échec de l'authentification"
+
#~ msgid ""
#~ "Authenticating the upgrade failed. There may be a problem with the "
#~ "network or with the server. "
#~ msgstr ""
#~ "Échec de l'authentification de la mise à jour. Il y a peut-être un "
#~ "problème avec le réseau ou avec le serveur "
+
#~ msgid "Downloading file %(current)li of %(total)li with %(speed)s/s"
#~ msgstr "Téléchargement du fichier %(current)li sur %(total)li à %(speed)s/s"
+
#~ msgid "Downloading file %(current)li of %(total)li"
#~ msgstr "Téléchargement du fichier %(current)li sur %(total)li"
+
#~ msgid "The list of changes is not available"
#~ msgstr "La liste des modifications n'est pas disponible"
+
#~ msgid ""
#~ "The list of changes is not available yet.\n"
#~ "Please try again later."
#~ msgstr ""
#~ "La liste des modifications n'est pas encore disponible. Veuillez "
#~ "réessayer plus tard."
+
#~ msgid ""
#~ "Failed to download the list of changes. \n"
#~ "Please check your Internet connection."
#~ msgstr ""
#~ "Échec lors du téléchargement de la liste des modifications. \n"
#~ "Veuillez vérifier votre connexion Internet."
+
#~ msgid "Backports"
#~ msgstr "« Backports »"
+
#~ msgid "Distribution updates"
#~ msgstr "Mises à jour de la distribution"
+
#~ msgid "Other updates"
#~ msgstr "Autres mises à jour"
+
#~ msgid "Version %s: \n"
#~ msgstr "Version %s : \n"
+
#~ msgid "Downloading list of changes..."
#~ msgstr "Téléchargement de la liste des modifications…"
+
#~ msgid "_Uncheck All"
#~ msgstr "_Tout décocher"
+
#~ msgid "_Check All"
#~ msgstr "Tout _vérifier"
+
#~ msgid "Download size: %s"
#~ msgstr "Taille du téléchargement : %s"
+
#~ msgid "You can install %s update"
#~ msgid_plural "You can install %s updates"
#~ msgstr[0] "Vous pouvez installer %s mise à jour"
#~ msgstr[1] "Vous pouvez installer %s mises à jour"
+
#~ msgid "Please wait, this can take some time."
#~ msgstr "Veuillez patienter, cela peut prendre du temps."
+
#~ msgid "Update is complete"
#~ msgstr "La mise à jour est terminée"
+
#~ msgid "Checking for updates"
#~ msgstr "Recherche des mises à jour disponibles en cours"
+
#~ msgid "From version %(old_version)s to %(new_version)s"
#~ msgstr "De la version %(old_version)s vers la version %(new_version)s"
+
#~ msgid "Version %s"
#~ msgstr "Version %s"
+
#~ msgid "(Size: %s)"
#~ msgstr "(Taille : %s)"
+
#~ msgid "Your distribution is not supported anymore"
#~ msgstr "Votre distribution n'est plus supportée"
+
#~ msgid ""
#~ "You will not get any further security fixes or critical updates. Upgrade "
#~ "to a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
@@ -887,10 +1076,13 @@ msgstr "Serveurs personnalisés"
#~ "Vous ne pouvez plus obtenir de mises à jour critiques ou de securité. "
#~ "Vous devez passer à une version plus récente d'Ubuntu Linux. Rendez-vous "
#~ "sur http://www.ubuntu.com pour de plus amples informations à ce sujet."
+
#~ msgid "<b>New distribution release '%s' is available</b>"
#~ msgstr "<b>Une nouvelle version « %s » est disponible</b>"
+
#~ msgid "Software index is broken"
#~ msgstr "La liste des logiciels est corrompue"
+
#~ msgid ""
#~ "It is impossible to install or remove any software. Please use the "
#~ "package manager \"Synaptic\" or run \"sudo apt-get install -f\" in a "
@@ -899,14 +1091,19 @@ msgstr "Serveurs personnalisés"
#~ "Il est impossible d'installer ou de supprimer des logiciels. Veuillez "
#~ "utiliser d'abord le « Gestionnaire de paquets Synaptic » ou lancez « sudo "
#~ "apt-get install -f » dans un terminal pour réparer ce problème."
+
#~ msgid "None"
#~ msgstr "Aucun(e)"
+
#~ msgid "1 KB"
#~ msgstr "1 Ko"
+
#~ msgid "%.0f KB"
#~ msgstr "%.0f Ko"
+
#~ msgid "%.1f MB"
#~ msgstr "%.1f Mo"
+
#~ msgid ""
#~ "<b><big>You must check for updates manually</big></b>\n"
#~ "\n"
@@ -920,24 +1117,34 @@ msgstr "Serveurs personnalisés"
#~ "Votre système ne vérifie pas les mises à jour automatiquement. Vous "
#~ "pouvez configurer ce comportement dans <i>Sources logicielles</i> qui se "
#~ "trouve dans l'onglet <i>Mises à jour par Internet</i>."
+
#~ msgid "<big><b>Keep your system up-to-date</b></big>"
#~ msgstr "<big><b>Maintenir votre système à jour</b></big>"
+
#~ msgid "<big><b>Not all updates can be installed</b></big>"
#~ msgstr "<big><b>Certaines mises à jour n'ont pu être installées</b></big>"
+
#~ msgid "<big><b>Starting update manager</b></big>"
#~ msgstr "<b><big>Démarrage du gestionnaire de mise à jour ?</big></b>"
+
#~ msgid "Changes"
#~ msgstr "Changements"
+
#~ msgid "Changes and description of the update"
#~ msgstr "Changements et description de la mise à jour"
+
#~ msgid "Chec_k"
#~ msgstr "_Vérifier"
+
#~ msgid "Check the software channels for new updates"
#~ msgstr "Vérifier les canaux logiciels pour de nouvelles mises à jour"
+
#~ msgid "Description"
#~ msgstr "Description"
+
#~ msgid "Release Notes"
#~ msgstr "Notes de publication"
+
#~ msgid ""
#~ "Run a distribution upgrade, to install as many updates as possible. \n"
#~ "\n"
@@ -949,44 +1156,60 @@ msgstr "Serveurs personnalisés"
#~ "\n"
#~ "Ce problème peut être dû à une mise à niveau incomplète, à des paquets "
#~ "non officiels ou à l'utilisation d'une version de développement."
+
#~ msgid "Show progress of single files"
#~ msgstr "Afficher la progression de chaque fichier"
+
#~ msgid "Software Updates"
#~ msgstr "Mises à jour des logiciels"
+
#~ msgid ""
#~ "Software updates correct errors, eliminate security vulnerabilities and "
#~ "provide new features."
#~ msgstr ""
#~ "Les mises à jour de logiciels peuvent corriger des erreurs, éliminer des "
#~ "problèmes de sécurité et apporter de nouvelles fonctionnalités."
+
#~ msgid "U_pgrade"
#~ msgstr "Mettre à _jour"
+
#~ msgid "Upgrade to the latest version of Ubuntu"
#~ msgstr "Mettre à jour vers la version la plus récente d'Ubuntu"
+
#~ msgid "_Check"
#~ msgstr "_Vérifier"
+
#~ msgid "_Distribution Upgrade"
#~ msgstr "_Mise à jour de la distribution"
+
#~ msgid "_Hide this information in the future"
#~ msgstr "_Masquer ces informations à l'avenir"
+
#~ msgid "_Install Updates"
#~ msgstr "_Installer les mises à jour"
#, fuzzy
#~ msgid "_Upgrade"
#~ msgstr "Mettre à _jour"
+
#~ msgid "changes"
#~ msgstr "changements"
+
#~ msgid "updates"
#~ msgstr "mises à jour"
+
#~ msgid "<b>Automatic updates</b>"
#~ msgstr "<b>Mises à jour automatiques</b>"
+
#~ msgid "<b>CDROM/DVD</b>"
#~ msgstr "<b>CD-ROM/DVD</b>"
+
#~ msgid "<b>Internet updates</b>"
#~ msgstr "<b>Mises à jour par Internet</b>"
+
#~ msgid "<b>Internet</b>"
#~ msgstr "<b>Internet</b>"
+
#~ msgid ""
#~ "<i>To improve the user experience of Ubuntu please take part in the "
#~ "popularity contest. If you do so the list of installed software and how "
@@ -1004,49 +1227,68 @@ msgstr "Serveurs personnalisés"
#~ "Les résultats sont utilisés pour améliorer le support des applications "
#~ "les plus utilisées et pour classer les applications dans les résultats "
#~ "des recherches.</i>"
+
#~ msgid "Add Cdrom"
#~ msgstr "Ajouter un CD-ROM"
+
#~ msgid "Authentication"
#~ msgstr "Authentification"
+
#~ msgid "D_elete downloaded software files:"
#~ msgstr "_Effacer les fichiers des logiciels téléchargés :"
+
#~ msgid "Download from:"
#~ msgstr "Télécharger depuis :"
+
#~ msgid "Import the public key from a trusted software provider"
#~ msgstr ""
#~ "Importer la clé publique d'un fournisseur de logiciels digne de confiance"
+
#~ msgid "Internet Updates"
#~ msgstr "Mises à jour par Internet"
+
#~ msgid ""
#~ "Only security updates from the official Ubuntu servers will be installed "
#~ "automatically"
#~ msgstr ""
#~ "Seules les mises à jour de sécurité des serveurs officiels d'Ubuntu "
#~ "seront automatiquement installées."
+
#~ msgid "Restore _Defaults"
#~ msgstr "Restaurer les clés par _défaut"
+
#~ msgid "Restore the default keys of your distribution"
#~ msgstr "Restaurer les clés par défaut de votre distribution"
+
#~ msgid "Software Sources"
#~ msgstr "Sources de mise à jour"
+
#~ msgid "Source code"
#~ msgstr "Code source"
+
#~ msgid "Statistics"
#~ msgstr "Statistiques"
+
#~ msgid "Submit statistical information"
#~ msgstr "Soumettre des statistiques sur l'utilisation des paquets"
+
#~ msgid "Third Party"
#~ msgstr "Tierces parties"
+
#~ msgid "_Check for updates automatically:"
#~ msgstr "_Rechercher des mises à jour automatiquement :"
+
#~ msgid "_Download updates automatically, but do not install them"
#~ msgstr ""
#~ "_Télécharger automatiquement les mises à jour en arrière-plan, mais ne "
#~ "pas les installer"
+
#~ msgid "_Import Key File"
#~ msgstr "_Importer la clé"
+
#~ msgid "_Install security updates without confirmation"
#~ msgstr "_Installer les mises à jour de sécurité sans confirmation"
+
#~ msgid ""
#~ "<b><big>The information about available software is out-of-date</big></"
#~ "b>\n"
@@ -1064,16 +1306,22 @@ msgstr "Serveurs personnalisés"
#~ "ces informations.\n"
#~ "\n"
#~ "Une connexion internet fonctionnelle sera nécessaire."
+
#~ msgid "<b>Comment:</b>"
#~ msgstr "<b>Commentaire :</b>"
+
#~ msgid "<b>Components:</b>"
#~ msgstr "<b>Composants :</b>"
+
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribution :</b>"
+
#~ msgid "<b>Type:</b>"
#~ msgstr "<b>Type :</b>"
+
#~ msgid "<b>URI:</b>"
#~ msgstr "<b>URI :</b>"
+
#~ msgid ""
#~ "<big><b>Enter the complete APT line of the repository that you want to "
#~ "add as source</b></big>\n"
@@ -1086,34 +1334,45 @@ msgstr "Serveurs personnalisés"
#~ "\n"
#~ "La ligne APT contient le type, l'adresse et le contenu d'un dépôt, par "
#~ "exemple <i>« deb http://ftp.debian.org sarge main »</i>."
+
#~ msgid "APT line:"
#~ msgstr "Ligne APT :"
+
#~ msgid ""
#~ "Binary\n"
#~ "Source"
#~ msgstr ""
#~ "Binaire\n"
#~ "Source"
+
#~ msgid "Edit Source"
#~ msgstr "Modifier la source de mise à jour"
+
#~ msgid "Scanning CD-ROM"
#~ msgstr "Examen du CD-ROM"
+
#~ msgid "_Add Source"
#~ msgstr "_Ajouter une source de mise à jour"
+
#~ msgid "_Reload"
#~ msgstr "A_ctualiser"
+
#~ msgid "Show and install available updates"
#~ msgstr "Afficher et installer les mises à jour disponibles"
+
#~ msgid "Update Manager"
#~ msgstr "Gestionnaire de mises à jour"
+
#~ msgid ""
#~ "Check automatically if a new version of the current distribution is "
#~ "available and offer to upgrade (if possible)."
#~ msgstr ""
#~ "Vérifier automatiquement si une nouvelle version de l'actuelle "
#~ "distribution est disponible et proposer la mise à jour (si possible)."
+
#~ msgid "Check for new distribution releases"
#~ msgstr "Vérifier les nouvelles versions de la distribution"
+
#~ msgid ""
#~ "If automatic checking for updates is disabled, you have to reload the "
#~ "channel list manually. This option allows to hide the reminder shown in "
@@ -1122,54 +1381,75 @@ msgstr "Serveurs personnalisés"
#~ "Si la recherche automatique des mises à jour est désactivée, vous devez "
#~ "recharger manuellement la liste des canaux logiciels. Cette option permet "
#~ "de cacher la notification qui apparaît dans ce cas."
+
#~ msgid "Remind to reload the channel list"
#~ msgstr "Me rappeller de recharger la liste des canaux logiciels"
+
#~ msgid "Show details of an update"
#~ msgstr "Afficher les détails d'une mise à jour"
+
#~ msgid "Stores the size of the update-manager dialog"
#~ msgstr "Enregistre la taille de la fenêtre du gestionnaire de mises à jour"
+
#~ msgid ""
#~ "Stores the state of the expander that contains the list of changes and "
#~ "the description"
#~ msgstr ""
#~ "Enregistre l'état de développement de la liste des changements et les "
#~ "descriptions"
+
#~ msgid "The window size"
#~ msgstr "La taille de la fenêtre"
+
#~ msgid "Configure the sources for installable software and updates"
#~ msgstr ""
#~ "Configurer les canaux logiciels (sources de mise à jour) et les mises à "
#~ "jour via Internet"
+
#~ msgid "http://security.debian.org/"
#~ msgstr "http://security.debian.org/"
+
#~ msgid "Debian 3.1 \"Sarge\" Security Updates"
#~ msgstr "Mises à jour de sécurité pour Debian 3.1 \"Sarge\""
+
#~ msgid "http://http.us.debian.org/debian/"
#~ msgstr "http://http.us.debian.org/debian/"
+
#~ msgid "By copyright or legal issues restricted software"
#~ msgstr "Logiciel restreint pour des raisons légales ou de copyright"
+
#~ msgid "Downloading file %li of %li with unknown speed"
#~ msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue"
+
#~ msgid "Normal updates"
#~ msgstr "Mises à jour habituelles"
+
#~ msgid "Cancel _Download"
#~ msgstr "_Annuler le téléchargement"
+
#~ msgid "Some software no longer officially supported"
#~ msgstr "Certains logiciels ne sont plus supportés officiellement"
+
#~ msgid "Could not find any upgrades"
#~ msgstr "Aucune mise à jour n'est disponible"
+
#~ msgid "Your system has already been upgraded."
#~ msgstr "Votre système a déjà été mis à jour."
+
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
#~ "<span weight=\"bold\" size=\"x-large\">Mise à jour vers Ubuntu 6.10</span>"
+
#~ msgid "Important security updates of Ubuntu"
#~ msgstr "Mises à jour de sécurité pour Ubuntu"
+
#~ msgid "Updates of Ubuntu"
#~ msgstr "Mises à jour d'Ubuntu"
+
#~ msgid "Cannot install all available updates"
#~ msgstr "Impossible d'installer toutes les mises à jour disponibles"
+
#~ msgid ""
#~ "<big><b>Examining your system</b></big>\n"
#~ "\n"
@@ -1180,93 +1460,125 @@ msgstr "Serveurs personnalisés"
#~ "\n"
#~ "Les mises à jour de logiciels peuvent corriger des erreurs, éliminer des "
#~ "problèmes de sécurité et apporter de nouvelles fonctionalités."
+
#~ msgid "Oficially supported"
#~ msgstr "Supporté officiellement"
+
#~ msgid ""
#~ "Some updates require the removal of further software. Use the function "
#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo "
#~ "apt-get dist-upgrade\" in a terminal to update your system completely."
#~ msgstr ""
#~ "Certaines mises à jour requièrent la suppression de logiciels "
-#~ "supplémentaires. Utilisez la fonction « Sélectionner la totalité des "
-#~ "mises à jour » du « Gestionnaire de paquets Synaptic » ou lancez « sudo "
-#~ "apt-get dist-upgrade » dans un terminal pour mettre votre système "
-#~ "complètement à jour."
+#~ "supplémentaires. Utilisez la fonction « Sélectionner la totalité des mises "
+#~ "à jour » du « Gestionnaire de paquets Synaptic » ou lancez « sudo apt-get "
+#~ "dist-upgrade » dans un terminal pour mettre votre système complètement à "
+#~ "jour."
+
#~ msgid "The following updates will be skipped:"
#~ msgstr "Les paquets suivants ne seront pas mis à jour :"
+
#~ msgid "About %li seconds remaining"
#~ msgstr "Environ %li secondes restantes"
+
#~ msgid "Download is complete"
#~ msgstr "Le téléchargement est terminé"
+
#~ msgid "The upgrade aborts now. Please report this bug."
#~ msgstr "La mise à jour vient d'échouer. Merci de rapporter ce bog.ue"
+
#~ msgid "Upgrading Ubuntu"
#~ msgstr "Mettre à jour Ubuntu"
+
#~ msgid "Hide details"
#~ msgstr "Masquer les détails"
+
#~ msgid "Show details"
#~ msgstr "Montrer les détails"
+
#~ msgid "Only one software management tool is allowed to run at the same time"
#~ msgstr ""
#~ "Vous ne pouvez utilisez qu'un seul gestionnaire de logiciels à la fois"
+
#~ msgid ""
#~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
#~ msgstr ""
#~ "Veuillez fermer l'autre application, par ex. « Aptitude » ou « Synaptic »."
+
#~ msgid "<b>Channels</b>"
#~ msgstr "<b>Dépôts</b>"
+
#~ msgid "<b>Keys</b>"
#~ msgstr "<b>Clés</b>"
+
#~ msgid "Installation Media"
#~ msgstr "Médium d'installation"
+
#~ msgid "Software Preferences"
#~ msgstr "Préférences du logiciel"
+
#~ msgid " "
#~ msgstr " "
+
#~ msgid "<b>Channel</b>"
#~ msgstr "<b>Canal</b>"
+
#~ msgid "<b>Components</b>"
#~ msgstr "<b>Composants</b>"
+
#~ msgid "Add Channel"
#~ msgstr "Ajouter un canal logiciel"
+
#~ msgid "Edit Channel"
#~ msgstr "Modifier un canal logiciel"
+
#~ msgid "_Add Channel"
#~ msgid_plural "_Add Channels"
#~ msgstr[0] "_Ajouter un canal logiciel"
#~ msgstr[1] "_Ajouter des canaux logiciels"
+
#~ msgid "_Custom"
#~ msgstr "_Personnalisé"
+
#~ msgid "Ubuntu 6.06 LTS"
#~ msgstr "Ubuntu 6.06 LTS"
+
#~ msgid "Ubuntu 6.06 LTS Security Updates"
#~ msgstr "Mises à jour de sécurité pour Ubuntu 6.06 LTS"
+
#~ msgid "Ubuntu 6.06 LTS Updates"
#~ msgstr "Mises à jour pour Ubuntu 6.06 LTS"
+
#~ msgid "Ubuntu 6.06 LTS Backports"
#~ msgstr "« Backports » pour Ubuntu 6.06 LTS"
+
#~ msgid ""
#~ "While scaning your repository information no valid entry for the upgrade "
#~ "was found.\n"
#~ msgstr ""
#~ "Durant la vérification des informations du dépôt, aucune entrée valide "
#~ "pour la mise à jour n'a été trouvée.\n"
+
#~ msgid "Repositories changed"
#~ msgstr "Les dépôts ont été modifiés"
+
#~ msgid ""
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
#~ msgstr ""
#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que "
#~ "vos changements soient effectifs. Voulez-vous le faire maintenant ?"
+
#~ msgid "<b>Sections</b>"
#~ msgstr "<b>Catégories :</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Sections :</b>"
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Recharger les informations des paquets depuis le serveur"
+
#~ msgid ""
#~ "<span weight=\"bold\" size=\"larger\">Downloading changes</span>\n"
#~ "\n"
@@ -1276,6 +1588,7 @@ msgstr "Serveurs personnalisés"
#~ "span>\n"
#~ "\n"
#~ "Il est nécessaire de récupérer les changement du serveur central"
+
#~ msgid "Show available updates and choose which to install"
#~ msgstr "Montre les mises à jours disponibles et choisir celles à installer"
@@ -1294,10 +1607,13 @@ msgstr "Serveurs personnalisés"
#, fuzzy
#~ msgid "Cancel downloading of the changelog"
#~ msgstr "Annuler le téléchargement du changelog"
+
#~ msgid "Choose a key-file"
#~ msgstr "Choisir un fichier de clé"
+
#~ msgid "<b>Packages to install:</b>"
#~ msgstr "<b>Paquets à installer :</b>"
+
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\n"
#~ "\n"
@@ -1308,10 +1624,13 @@ msgstr "Serveurs personnalisés"
#~ "\n"
#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à "
#~ "jour en utilisant le bouton Installer."
+
#~ msgid "<b>Repository</b>"
#~ msgstr "<b>Dépôt</b>"
+
#~ msgid "<b>Temporary files</b>"
#~ msgstr "<b>Fichiers temporaires</b>"
+
#~ msgid "<b>User Interface</b>"
#~ msgstr "<b>Interface utilisateur</b>"
@@ -1327,6 +1646,7 @@ msgstr "Serveurs personnalisés"
#~ "Vous pouvez ajouter ou enlever des clés d'authentification grâce à cette "
#~ "boîte de dialogue. Une clé rend possible la vérification de l'intégrité "
#~ "des logiciels que vous téléchargez."
+
#~ msgid "A_uthentication"
#~ msgstr "A_uthentification"
@@ -1338,16 +1658,22 @@ msgstr "Serveurs personnalisés"
#~ "Ajouter une nouvelle clé au trousseau digne de confiance. Veuillez "
#~ "vérifier que vous avez obtenu la clé à travers un canal sécurisé et que "
#~ "vous faites confiance à son possesseur. "
+
#~ msgid "Automatically clean _temporary packages files"
#~ msgstr "Nettoyer automatiquement les fichiers _temporaires des paquets"
+
#~ msgid "Clean interval in days: "
#~ msgstr "Nombre de jours avant nettoyage : "
+
#~ msgid "Delete _old packages in the package cache"
#~ msgstr "Supprimer les _anciens paquets du cache des paquets"
+
#~ msgid "Edit Repository..."
#~ msgstr "Éditer le dépôt..."
+
#~ msgid "Maximum age in days:"
#~ msgstr "Âge maximal en jours :"
+
#~ msgid "Maximum size in MB:"
#~ msgstr "Taille maximale en Mo :"
@@ -1358,18 +1684,25 @@ msgstr "Serveurs personnalisés"
#~ msgstr ""
#~ "Restaurer les clés par défaut fournies avec la distribution. Les clés "
#~ "installées par l'utilisateur ne seront pas modifiées."
+
#~ msgid "Set _maximum size for the package cache"
#~ msgstr "Définir une taille _maximale pour le cache de paquets"
+
#~ msgid "Settings"
#~ msgstr "Paramètres"
+
#~ msgid "Show disabled software sources"
#~ msgstr "Afficher les sources des logiciels désactivées"
+
#~ msgid "Update interval in days: "
#~ msgstr "Nombre de jours avant mise à jour : "
+
#~ msgid "_Add Repository"
#~ msgstr "_Ajouter un dépôt"
+
#~ msgid "_Download upgradable packages"
#~ msgstr "_Télécharger les paquets pouvant être mis à jour"
+
#~ msgid ""
#~ "This means that some dependencies of the installed packages are not "
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
@@ -1377,8 +1710,10 @@ msgstr "Serveurs personnalisés"
#~ "Ceci signifie que certaines dépendances des paquets installés ne sont pas "
#~ "satisfaites. Veuillez utilisez « Synaptic » ou « apt-get » pour régler la "
#~ "situation."
+
#~ msgid "It is not possible to upgrade all packages."
#~ msgstr "Il n'est pas possible de mettre à jour tous les paquets."
+
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
@@ -1387,24 +1722,30 @@ msgstr "Serveurs personnalisés"
#~ msgstr ""
#~ "Cela signifie que d'autres actions (comme l'installation ou la "
#~ "suppression de paquets) seront requises après la mise à jour. Veuillez "
-#~ "utiliser Synaptic « Mise à jour intelligente » ou « apt-get dist-"
-#~ "upgrade » pour régler la situation."
+#~ "utiliser Synaptic « Mise à jour intelligente » ou « apt-get dist-upgrade » "
+#~ "pour régler la situation."
+
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr ""
#~ "Changements non trouvés, le serveur n'a peut-être pas encore été mis à "
#~ "jour."
+
#~ msgid "The updates are being applied."
#~ msgstr "Les mises à jour ont été appliquées."
+
#~ msgid ""
#~ "You can run only one package management application at the same time. "
#~ "Please close this other application first."
#~ msgstr ""
#~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. "
#~ "Veuillez tout d'abord fermer cette autre application."
+
#~ msgid "Updating package list..."
#~ msgstr "Mise à jour de la liste des paquets..."
+
#~ msgid "There are no updates available."
#~ msgstr "Aucune mise à jour n'est disponible."
+
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1414,14 +1755,17 @@ msgstr "Serveurs personnalisés"
#~ "version que vous êtes entrain d'utiliser ne recevra pas d'autres "
#~ "correctifs de sécurité ou mises à jour critiques. Veuillez voir http://"
#~ "www.ubuntulinux.org pour les informations de mise à jour."
+
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Il y a une nouvelle version d'Ubuntu disponible !"
+
#~ msgid ""
#~ "A new release with the codename '%s' is available. Please see http://www."
#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
#~ "Une nouvelle version avec le nom de code « %s » est disponible. Veuillez "
#~ "voir http://www.ubuntulinux.org pour les informations de mise à jour."
+
#~ msgid "Never show this message again"
#~ msgstr "Ne plus afficher ce message à nouveau"
@@ -1432,23 +1776,32 @@ msgstr "Serveurs personnalisés"
#~ msgstr ""
#~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. "
#~ "Veuillez tout d'abord fermer cette autre application."
+
#~ msgid "Initializing and getting list of updates..."
#~ msgstr "Initialisation et récupération de la liste des mises à jour..."
+
#~ msgid "You need to be root to run this program"
#~ msgstr "Vous devez être superutilisateur pour lancer ce programme."
+
#~ msgid "Edit software sources and settings"
#~ msgstr "Éditer les sources et paramètres du logiciel"
+
#~ msgid "Ubuntu Update Manager"
#~ msgstr "Gestionnaire de mises à jour d'Ubuntu"
+
#~ msgid "Binary"
#~ msgstr "Binaire"
+
#~ msgid "CD"
#~ msgstr "CD"
+
#~ msgid "Non-free software"
#~ msgstr "Logiciel non-libre"
+
#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
#~ msgstr ""
#~ "Clé de signature automatique de l'archive Ubuntu <ftpmaster@ubuntu.com>"
+
#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
#~ msgstr ""
#~ "Clé de signature automatique des cédéroms Ubuntu <cdimage@ubuntu.com>"
@@ -1463,5 +1816,6 @@ msgstr "Serveurs personnalisés"
#~ "\n"
#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à "
#~ "jour en utilisant le bouton Installer."
+
#~ msgid "0"
#~ msgstr "0"
diff --git a/po/fur.po b/po/fur.po
index ba8259cc..fc65c3f2 100644
--- a/po/fur.po
+++ b/po/fur.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-08-25 05:55+0000\n"
"Last-Translator: Marco <marcuz@linux.it>\n"
"Language-Team: Friulian <fur@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,12 +303,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index 1b14a089..5134732a 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-19 00:43+0000\n"
"Last-Translator: Felipe Gil Castiñeira <xil@det.uvigo.es>\n"
"Language-Team: galician\n"
@@ -28,209 +28,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cdrom con Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Actualizacións de Seguranza para Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Cdrom con Ubuntu 5.10 \"Breezy Badger\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Actualizacións de Seguranza para Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Cdrom con Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 \"Edgy Eft\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Mantido pola Comunidade"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Controladores propietarios de dispositivos"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Aplicacións restrinxidas"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Cdrom con Ubuntu 6.10 \"Edgy Eft\""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS \"Dapper Drake\""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Software de Código Aberto soportado por Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Mantido pola Comunidade (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Software de Código Aberto mantido pola Comunidade"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Controladores non libres"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Controladores propietarios para dispositivos "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Software restrinxido (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Software restrinxido por razóns de copyright ou legais"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Cdrom con Ubuntu 6.06 LTS \"Dapper Drake\""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Actualizacións de seguranza importantes"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Actualizacións recomendadas"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Actualizacións aconselladas"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Actualizacións de backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "CD con Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Cdrom con Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Actualizacións de seguranza de Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Actualizacións de Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Actualizacións de Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cdrom con Ubuntu 5.04 \"Hoary Hedgehog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Soportado oficialmente"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Actualizacións de Seguranza para Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Actualizacións para Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Backports para Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Mantido pola comunidade (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Software non libre (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cdrom con Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Xa non se mantén oficialmente"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Copyright restrinxido"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Actualizacións de seguranza de Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Actualizacións de Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Backports para Ubuntu 4.10"
@@ -290,7 +314,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Software non compatible coa DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Servidor desde %s"
@@ -298,12 +322,12 @@ msgstr "Servidor desde %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Servidor principal"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Servidores personalizados"
@@ -1588,9 +1612,9 @@ msgstr "Servidores personalizados"
#~ "apt-get dist-upgrade\" in a terminal to update your system completely."
#~ msgstr ""
#~ "Algunhas actualizacións requiren a desinstalación de software. Utilice a "
-#~ "función «Marcar todas as actualizacións» do xestor de paquetes "
-#~ "«Synaptic», ou execute «sudo apt-get dist-upgrade» nun terminal, para "
-#~ "actualizar completamente o seu sistema."
+#~ "función «Marcar todas as actualizacións» do xestor de paquetes «Synaptic», "
+#~ "ou execute «sudo apt-get dist-upgrade» nun terminal, para actualizar "
+#~ "completamente o seu sistema."
#~ msgid "The following updates will be skipped:"
#~ msgstr "Pasaranse por alto as seguintes actualizacións:"
@@ -1613,8 +1637,7 @@ msgstr "Servidores personalizados"
#~ msgid ""
#~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
#~ msgstr ""
-#~ "Por favor, peche primeiro a outra aplicación (ej: «aptitude» ou "
-#~ "«Synaptic»)."
+#~ "Por favor, peche primeiro a outra aplicación (ej: «aptitude» ou «Synaptic»)."
#~ msgid ""
#~ "<b><big>You must check for updates manually</big></b>\n"
diff --git a/po/he.po b/po/he.po
index 38f2353c..eb36a399 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 08:48+0000\n"
"Last-Translator: Yaniv Abir <yanivabir@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n"
@@ -29,211 +29,235 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "אובונטו 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "תקליטור אובונטו 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "עדכוני אבטחה - אובונטו 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "תקליטור אובונטו 5.10 \"Breezy Badger\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "עדכוני אבטחה - אובונטו 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "תקליטור אובונטו 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "אובונטו 6.10 \"Edgy Eft\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "מתוחזק ע\"י הקהילה"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "דרייברים קניינים להתקנים"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "תוכנה בעלת הגבלות"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "תקליטור אובונטו 6.10 \"Edgy Eft\""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "אובונטו 6.06 LTS \"DapperDrake\""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "תוכנות קוד פתוח הנתמכות ע\"י Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "מתוחזק ע\"י הקהילה (Universe("
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "תוכנות קוד פתוח המתוחזקות ע\"י הקהילה"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "דרייברים לא חופשיים"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "תוכנה בעלת הגבלות (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "תקליטור אובונטו 6.06 LTS \"Dapper Drake\""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "עדכוני אבטחה חשובים"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "עדכונים מומלצים"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "עדכונים מוצעים"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "עדכונים מוצעים"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "אובונטו 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "תקליטור אובונטו 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "עדכוני אבטחה - אובונטו 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "עדכונים - אובונטו 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "עדכונים - אובונטו 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "אובונטו 5.04 \"Hoary Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "תקליטור אובונטו 5.04 \"Hoary Hedgehog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "נתמך רשמית"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "עדכוני אבטחה - אובונטו 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "עדכונים - אובונטו 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "עדכונים - אובונטו 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "אובונטו 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "מתוחזק ע\"י קהילה (Universe("
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "לא-חופשי (Multiverse("
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "תקליטור אובונטו 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "אינה נתמכת רשמית יותר"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "זכויות יוצרים מגבילות"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "עדכוני אבטחה - אובונטו 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "עדכונים - אובונטו 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "עדכונים - אובונטו 5.10"
@@ -296,7 +320,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "השרת ב%s"
@@ -304,12 +328,12 @@ msgstr "השרת ב%s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "שרת ראשי"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
#, fuzzy
msgid "Custom servers"
msgstr "השרת הקרוב ביותר"
diff --git a/po/hi.po b/po/hi.po
index f0976b7f..2a8d99d3 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-08-01 15:30+0000\n"
"Last-Translator: Gaurav Mishra <gauravtechie@gmail.com>\n"
"Language-Team: Hindi <hi@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,12 +303,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index 0697c590..14e36bc1 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-18 19:37+0000\n"
"Last-Translator: Ante Karamatić <ivoks@grad.hr>\n"
"Language-Team: Croatian <hr@li.org>\n"
@@ -27,209 +27,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cdrom sa Ubuntu 5.04 ' Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 sigurnosne nadogradnje"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CDROM s Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 sigurnosne nadogradnje"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CDROM s Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Održavani od strane zajednice"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Neslobodni upogonitelji za uređaje"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Neslobodni softver"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CDROM sa Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Službeno podržani Open Source softver"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Održavani od strane zajednice (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Softver održavan od strane zajednice"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Neslobodni pogonski programi"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Neslobodni upogonitelji za uređaje "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Ograničeni softver (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Softver ograničen autorskim pravom ili legalnim pitanjima"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "CDROM s Ubuntu 6.06 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Važne sigurnosne nadogradnje"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Preporučene nadogradnje"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Predložene nadogradnje"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Backport nadogradnje"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CDROM s Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 sigurnosne nadogradnje"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 osvježenja"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 backporti"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cdrom sa Ubuntu 5.04 ' Hoary Hedgehog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Službeno podržani"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 sigurnosne nadogradnje"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 nadogradnje"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 backporti"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Wart Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Održavani od strane zajednice (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Neslobodni (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cdrom sa Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Više nisu službeno podržani"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Ograničeno autorsko pravo"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 sigurnosne nadogradnje"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 osvježenja"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 backports"
@@ -289,7 +313,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "DFSG-nekompatibilni programi"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Poslužitelj za %s"
@@ -297,12 +321,12 @@ msgstr "Poslužitelj za %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Glavni poslužitelj"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Osobni poslužitelji"
diff --git a/po/hu.po b/po/hu.po
index ad42d3b8..47434413 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:03+0000\n"
"Last-Translator: Gabor Kelemen <kelemengabor@linuxforum.hu>\n"
"Language-Team: Hungarian <gnome@gnome.hu>\n"
@@ -26,209 +26,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Az Ubuntu 5.04 \"Hoary Hedgehog\"-ot tartalmazó CD-ROM"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 biztonsági frissítések"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Az Ubuntu 5.10 \"Breezy Badger\"-t tartalmazó CD-ROM"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 biztonsági frissítések"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Az Ubuntu 5.10 \"Breezy Badger\"-t tartalmazó CD-ROM"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 \"Edgy Eft\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Közösségi karbantartású"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Szabadalmazott eszközmeghajtók"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Nem-szabad"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Az Ubuntu 6.10 \"Edgy Eft\" CD-ROM"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS \"Dapper Drake\""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "A Canonical által támogatott nyílt forrású szoftverek"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Közösségi karbantartású (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Közösségi karbantartású nyílt forrású szoftverek"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Nem-szabad meghajtók"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Szabadalmazott eszközmeghajtók "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Nem-szabad szoftverek (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Szerzői vagy egyéb jogi problémák miatt korlátozott szoftver"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Az Ubuntu 6.06 LTS \"Dapper Drake\"-et tartalmazó CD-ROM"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Fontos biztonsági frissítések"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Ajánlott frissítések"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Javasolt frissítések"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Visszaportolt frissítések"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Az Ubuntu 5.10 \"Breezy Badger\"-t tartalmazó CD-ROM"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 biztonsági frissítések"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 frissítések"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 visszaportolt csomagok"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Az Ubuntu 5.04 \"Hoary Hedgehog\"-ot tartalmazó CD-ROM"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Hivatalosan támogatott"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 biztonsági frissítések"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 frissítések"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 visszaportolt csomagok"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Közösségi karbantartású (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Nem-szabad (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Az Ubuntu 4.10 \"Warty Warthog\"-ot tartalmazó CD-ROM"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Hivatalosan már nem támogatott"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Szerzői jogi korlátozás alatt"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 biztonsági frissítések"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 frissítések"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 visszaportolt csomagok"
@@ -288,7 +312,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Nem DFSG-kompatibilis szoftver"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Kiszolgáló a következőhöz: %s"
@@ -296,12 +320,12 @@ msgstr "Kiszolgáló a következőhöz: %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Fő kiszolgáló"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Egyéni kiszolgálók"
diff --git a/po/id.po b/po/id.po
index 0c67a0db..81d0f8d8 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:03+0000\n"
"Last-Translator: Andy Apdhani <imtheface@gmail.com>\n"
"Language-Team: Indonesian <id@li.org>\n"
@@ -25,222 +25,244 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr "Ubuntu 6.06 LTS Security Updates"
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 6.06 LTS Security Updates"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr "Ubuntu 6.06 LTS Security Updates"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Dikelola oleh komunitas (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Tidak-bebas (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS Updates"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Dikelola oleh komunitas (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Dikelola oleh komunitas (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Dikelola oleh komunitas (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "Tidak-bebas (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Tidak-bebas (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "Pemutakhiran lewat Internet"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "_Instal Update"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "_Instal Update"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
#, fuzzy
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 6.06 LTS Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
#, fuzzy
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 6.06 LTS Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 6.06 LTS Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Resmi disokong"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 6.06 LTS Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 6.06 LTS Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 6.06 LTS Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Dikelola oleh komunitas (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Tidak-bebas (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Beberapa perangkat lunak tidak lagi resmi disokong"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Hak cipta terlarang"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
#, fuzzy
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 6.06 LTS Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
#, fuzzy
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 6.06 LTS Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 6.06 LTS Backports"
@@ -304,7 +326,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -312,12 +334,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/it.po b/po/it.po
index 35439e6e..97221f24 100644
--- a/po/it.po
+++ b/po/it.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-22 10:13+0000\n"
"Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
"Language-Team: Italian <it@li.org>\n"
@@ -27,209 +27,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 «Hoary Hedgehog»"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 - Aggiornamenti di sicurezza"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 - Aggiornamenti di sicurezza"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 «Edgy Eft»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Mantenuto dalla comunità"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Driver proprietari per i dispositivi"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Software con restrizioni"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS «Dapper Drake»"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Software open source supportato da Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Mantenuto dalla comunità (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Software open source mantenuto dalla comunità"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Driver non liberi"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Driver proprietari per dispositivi "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Software con restrizioni (multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Software con restrizioni per copyright o motivi legali"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "CD-ROM con Ubuntu 6.06 LTS «Drapper Drake»"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Aggiornamenti di sicurezza importanti"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Aggiornamenti raccomandati"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Aggiornamenti proposti"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Aggiornamenti di backport"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 - Aggiornamenti di sicurezza"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 - Aggiornamenti"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Backport di Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 «Hoary Hedgehog»"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Supportati ufficialmente"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 - Aggiornamenti di sicurezza"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 - Aggiornamenti"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Backport per Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 «Warty Warthog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Mantenuti dalla comunità (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Non libero (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Software non più supportato ufficialmente"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Copyright con restrizioni"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 - Aggiornamenti di sicurezza"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Aggiornamenti di Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Backport per Ubuntu 4.10"
@@ -290,7 +314,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Software non compatibile con le DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Server in %s"
@@ -298,12 +322,12 @@ msgstr "Server in %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Server principale"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Server personalizzati"
@@ -420,8 +444,8 @@ msgstr "Server personalizzati"
#~ "Si è verificato un problema irrisolvibile durante il calcolo "
#~ "dell'aggiornamento.\n"
#~ "\n"
-#~ "Notificare questo evento come bug riguardo il pacchetto «update-manager» "
-#~ "e includere nella notifica i file della cartella «/var/log/dist-upgrade»."
+#~ "Notificare questo evento come bug riguardo il pacchetto «update-manager» e "
+#~ "includere nella notifica i file della cartella «/var/log/dist-upgrade»."
#~ msgid "Error authenticating some packages"
#~ msgstr "Errore nell'autenticare alcuni pacchetti"
@@ -527,8 +551,8 @@ msgstr "Server personalizzati"
#~ "Dopo la scansione del proprio file «sorces.list», non è stata trovata "
#~ "alcuna voce valida per «%s».\n"
#~ "\n"
-#~ "Aggiungere le voci predefinite per «%s»? Selezionando «No», "
-#~ "l'aggiornamento verrà annullato."
+#~ "Aggiungere le voci predefinite per «%s»? Selezionando «No», l'aggiornamento "
+#~ "verrà annullato."
#~ msgid "Repository information invalid"
#~ msgstr "Informazioni sul repository non valide"
@@ -619,8 +643,8 @@ msgstr "Server personalizzati"
#~ "software. È comunque possibile avere supporto dalla comunità.\n"
#~ "\n"
#~ "Se non è abilitato il repository del software mantenuto dalla comunità "
-#~ "(«universe»), verrà suggerita la rimozione di questi pacchetti al "
-#~ "prossimo passo."
+#~ "(«universe»), verrà suggerita la rimozione di questi pacchetti al prossimo "
+#~ "passo."
#~ msgid "Remove obsolete packages?"
#~ msgstr "Rimuovere i pacchetti obsoleti?"
@@ -659,8 +683,8 @@ msgstr "Server personalizzati"
#~ "dist-upgrade/ in the bugreport."
#~ msgstr ""
#~ "La preparazione del sistema per l'aggiornamento è fallito. Notificare "
-#~ "questo evento come bug per il pacchetto «update-manager» includendo i "
-#~ "file in «/var/log/dist-upgrade/» nel rapporto."
+#~ "questo evento come bug per il pacchetto «update-manager» includendo i file "
+#~ "in «/var/log/dist-upgrade/» nel rapporto."
#~ msgid "Updating repository information"
#~ msgstr "Aggiornamento delle informazioni sui repository"
diff --git a/po/ja.po b/po/ja.po
index df1cb04f..978ed80d 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.42.4\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:03+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: Ubuntu Japanese Team <ubuntu-ja-users@freeml.com>\n"
@@ -27,219 +27,243 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 セキュリティアップデート"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu·5.10·'Breezy·Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 セキュリティアップデート"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu·5.10·'Breezy·Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "コミュニティによるメンテナンス"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "デバイス用のプロプライエタリなドライバ"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "制限のあるソフトウェア"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft' のCD-ROM"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Canonical によってサポートされるオープンソースソフトウェア"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "コミュニティによるメンテナンス (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "コミュニティによるメンテナンスされるオープンソースソフトウェア"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "フリーではないドライバ"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "デバイス用のプロプライエタリなドライバ "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "制限されたソフトウェア (Multiuniverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake' の CD-ROM"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "Ubuntu 5.10 セキュリティアップデート"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "アップデートをインストール中"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "バックポートされたアップデート"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu·5.10·'Breezy·Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu·5.10·'Breezy·Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 セキュリティアップデート"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 アップデート"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 バックポート"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
#, fuzzy
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Officially supported"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.10 セキュリティアップデート"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.10 アップデート"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.10 バックポート"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu·5.10·'Breezy·Badger'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Community maintained (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Non-free (Multiuniverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog' のCD-ROM"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "いくつかのソフトウェアはもう公式にサポートされません"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Restricted copyright"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 セキュリティアップデート"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
#, fuzzy
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 5.10 アップデート"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 5.10 バックポート"
@@ -301,7 +325,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "DFSGに適合しないソフトウェア"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "%s のサーバ"
@@ -309,12 +333,12 @@ msgstr "%s のサーバ"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "メインサーバ"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "カスタムサーバ"
diff --git a/po/ka.po b/po/ka.po
index 71e21f88..91cbde06 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-18 01:28+0000\n"
"Last-Translator: Malkhaz Barkalaya <malxaz@gmail.com>\n"
"Language-Team: Georgian <geognome@googlegroups.com>\n"
@@ -28,209 +28,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'-ის ლაზერული დისკი"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 უსაფრთხოების განახლება"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 'Breezy Badger'-ის ლაზერული დისკი"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 უსაფრთხოების განახლება"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 'Breezy Badger'-ის ლაზერული დისკი"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "universe საზოგადოების მხრდაჭერით"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "მოწყობილობების საკუთარი დრაივერები"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "არათავისუფალი პროგრამები"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'-ს ლაზერული დისკი"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "თავისუფალი პროგრამები (Open Source) Canonical-ის მხარდაჭერით"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "universe საზოგადოების მხრდაჭერით"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "თავისუფალი პროგრამები (Open Source) universe საზოგადოების მხარდაჭერით"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "არათავისუფალი დრაივერები"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "მოწყობილობების საკუთარი დრაივერები "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "არათავისუფალი პროგრამები (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "პატენტებითა და კანონებით შეზღუდული პროგრამები"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'-ის ლაზერული დისკი"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "უსაფრთხოების მნიშვნელოვანი განახლებები"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "რეკომენდებული განახლებები"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "შემოთავაზებული განახლებები"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Backport-განახლებები"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'-ის ლაზერული დისკი"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 უსაფრთხოების განახლება"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 განახლებები"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 ბექპორტები"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'-ის ლაზერული დისკი"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "ოფიციალური მხარდაჭერით"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 უსაფრთხოების განახლება"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 განახლებები"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 ბექპორტები"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "საზოგადოების მხარდაჭერით (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "არათავისუფალი (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'-ის ლაზერული დისკი"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "მოხსნილი აქვს ოფიციალური მხარდაჭერა"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "შეზღუდული საავტორო უფლება"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 უსაფრთხოების განახლებები"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 განახლებები"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 ბექპორტები"
@@ -290,7 +314,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "DFSG-არათავსებადი პროგრამები"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "%s სერვერი"
@@ -298,12 +322,12 @@ msgstr "%s სერვერი"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "მთავარი სერვერი"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "საკუთარი სერვერები"
diff --git a/po/ko.po b/po/ko.po
index e2a6d174..2f795710 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:04+0000\n"
"Last-Translator: Eungkyu Song <eungkyu@gmail.com>\n"
"Language-Team: Korean <ko@li.org>\n"
@@ -25,209 +25,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "우분투 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "우분투 5.04 'Hoary Hedgehog' 씨디롬"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "우분투 5.04 보안 업데이트"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "우분투 5.10 'Breezy Badger' 씨디롬"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "우분투 5.04 보안 업데이트"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "우분투 5.10 'Breezy Badger' 씨디롬"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "우분투 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "커뮤니티에서 관리"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "장치의 독점 드라이버"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "제한된 소프트웨어"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "우분투 6.10 'Edgy Eft' 씨디롬"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "우분투 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Canonical이 지원하는 오픈 소스 소프트웨어"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "커뮤니티에서 관리 (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "커뮤니티에서 관리하는 오픈 소스 소프트웨어"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "비자유 드라이버"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "장치의 독점 드라이버 "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "제한된 소프트웨어 (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "우분투 6.06 LTS 'Dapper Drake' 씨디롬"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "중요한 보안 업데이트"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "추천하는 업데이트"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "제안하는 업데이트"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Backport 업데이트"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "우분투 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "우분투 5.10 'Breezy Badger' 씨디롬"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "우분투 5.10 보안 업데이트"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "우분투 5.10 업데이트"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "우분투 5.10 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "우분투 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "우분투 5.04 'Hoary Hedgehog' 씨디롬"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "공식적으로 지원함"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "우분투 5.04 보안 업데이트"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "우분투 5.04 업데이트"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "우분투 5.04 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "우분투 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "커뮤니티에서 관리 (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "비자유 (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "우분투 4.10 'Warty Warthog' 씨디롬"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "더 이상 공식적으로 지원하지 않음"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "저작권이 제한됨"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "우분투 4.10 보안 업데이트"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "우분투 4.10 업데이트"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "우분투 4.10 Backports"
@@ -287,7 +311,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "DFSG와 호환이 되지 않는 소프트웨어"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "%s 서버"
@@ -295,12 +319,12 @@ msgstr "%s 서버"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "주 서버"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "사용자 정의 서버"
diff --git a/po/ku.po b/po/ku.po
index d15f136f..e3009cc0 100644
--- a/po/ku.po
+++ b/po/ku.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-17 09:50+0000\n"
"Last-Translator: rizoye-xerzi <rizoxerzi@gmail.com>\n"
"Language-Team: Kurdish <ku@li.org>\n"
@@ -26,210 +26,234 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cdroma Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Rojanekirinên Ewlekariyên yên Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Cdroma Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Rojanekirinên Ewlekariyên yên Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Cdroma Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Yên ji aliyê komekê ber çav hatiye derbaskirin"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Ji bo cîhazan ajokerên ku çavkaniyên wan girtî ne"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Nivîsbariya bi sînor"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Cdroma Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Çavkaniya xwezayî ya li gorî bingeha nermalavê"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Yên ji aliyê koman lê hatine nihêrtin"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr ""
"Nivîsbariyên Kodên Çavkaniyên Azad yên ji aliyê koman lê hatine nihêrtin"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Ajokerên ne azad"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Ji bo cîhazan ajokarên xwedî-bawername "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Nivîsbariya bi sînor"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Nivîsbariya bi mafên weşan û belavkirinê sînor kirî"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Cdroma Ubuntu 6.06 LTS 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Rojanekirinên ewlekariyê yên girîng"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Rojanekirinên têne pêşniyarkirin"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Rojanekirinên hatine pêşniyarkirin"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Rojanekirinên paş de hatine kişandin"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Cdroma Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Rojanekirinên Ewlekariyê yên Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Rojanekirina Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Rojanekirinên Paş de Hatine Kişandin yên Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cdroma Ubuntu 5.04 'Hoary Hedgehog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Bi piştgiriya fermî"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Rojanekirinên Ewlekariyên yên Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Rojanekirinên Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Rojanekirinên Paş de Hatine Kişandin yên Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Yên ji aliyê koman ve lê tê nihêrîn (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Ne-azad (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cdroma Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Êdi bi awayekî fermî nayê destekkirin"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Mafê kopîkrinê yê sînorkirî"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Rojanekirinên Ubuntu 4.10 yên Ewlekarî"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Rojanekirinên Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 nivîsbariyên bi paş de kişandî (Backports)"
@@ -289,7 +313,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "nivîsbariya hevgirtî ya ne li gorî -DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Pêşkêşkera %s"
@@ -297,12 +321,12 @@ msgstr "Pêşkêşkera %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Pêşkêşkera Mak"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Pêşkêşkera taybet"
diff --git a/po/lt.po b/po/lt.po
index 4db952d8..63e7c7f8 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:04+0000\n"
"Last-Translator: Mantas Kriaučiūnas <mantas@akl.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -26,214 +26,238 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 „Hoary Hedgehog“"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD diskas Ubuntu 5.04 „Hoary Hedgehog“"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 saugumo atnaujinimai"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD diskas su Ubuntu 5.10 „Breezy Badger“"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 saugumo atnaujinimai"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD diskas su Ubuntu 5.10 „Breezy Badger“"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Prižiūrima bendruomenės"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Ne Laisva (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD diskas su Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS „Dapper Drake“"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Prižiūrima bendruomenės (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Prižiūrima bendruomenės (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Bendruomenės prižiūrima laisva programinė įranga"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "Ne Laisva (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Nuosavybinės įrenginių valdyklės "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Ne Laisva (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "CD diskas su Ubuntu 6.06 LTS „Dapper Drake“"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Svarbūs saugumo atnaujinimai"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Rekomenduojami atnaujinimai"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Testuojami atnaujinimai"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Naujos ir atnaujintos programos"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 „Breezy Badger“"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD diskas su Ubuntu 5.10 „Breezy Badger“"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 saugumo atnaujinimai"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 atnaujinimai"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Naujos programos Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 „Hoary Hedgehog“"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD diskas Ubuntu 5.04 „Hoary Hedgehog“"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Oficialiai palaikoma"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 saugumo atnaujinimai"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 atnaujinimai"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Naujos programos Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 „Warty Warthog“"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Prižiūrima bendruomenės (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Ne Laisva (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD diskas su Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Apribotos autorinės teisės"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 saugumo atnaujinimai"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 atnaujinimai"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Naujos programos Ubuntu 4.10"
@@ -293,7 +317,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Su DFSG nesuderinama programinė įranga"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -301,12 +325,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/lv.po b/po/lv.po
index 060eb352..34198e14 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: lp-upd-manager-lv\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-09-05 20:00+0000\n"
"Last-Translator: Raivis Dejus <orvils@gmail.com>\n"
"Language-Team: Latvian <locale@laka.lv>\n"
@@ -28,206 +28,226 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Sabiedrības uzturētie (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Sabiedrības uzturētie (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Sabiedrības uzturētie (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "%s atjauninājumi"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Oficiāli atbalstītie"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Sabiedrības uzturētie (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Maksas (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Saistītie autortiesību"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -284,7 +304,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -292,12 +312,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Galvenais serveris"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/mk.po b/po/mk.po
index aab640fe..9cf8fbc0 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:04+0000\n"
"Last-Translator: Арангел Ангов <ufo@linux.net.mk>\n"
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
@@ -26,226 +26,250 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Безбедносни надградби за Убунту 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD диск со Убунту 5.10 \"Breezy Badger\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Безбедносни надградби за Убунту 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD диск со Убунту 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Надградби за Убунту 5.10"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Оддржувано од заедницата (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Додатен софтвер"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
#, fuzzy
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD диск со Убунту 4.10 \"Warty Warthog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Надградби за Убунту 5.04"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Оддржувано од заедницата (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Оддржувано од заедницата (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Оддржувано од заедницата (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "Неслободно (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Неслободно (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
#, fuzzy
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Надградби за Убунту 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "Безбедносни надградби за Debian Stable"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Инсталирам надградби..."
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Инсталирам надградби..."
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "CD диск со Убунту 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD диск со Убунту 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Безбедносни надградби за Убунту 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Надградби за Убунту 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Надградби за Убунту 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
#, fuzzy
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Официјално поддржано"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Безбедносни надградби за Убунту 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Надградби за Убунту 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "Надградби за Убунту 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "CD диск со Убунту 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Оддржувано од заедницата (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Неслободно (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
#, fuzzy
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD диск со Убунту 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Официјално поддржано"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Restricted copyright"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Безбедносни надградби за Убунту 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Надградби за Убунту 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "Надградби за Убунту 5.10"
@@ -308,7 +332,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Не-DFSG-компатибилен софтвер"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -316,12 +340,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/mr.po b/po/mr.po
index 66c5a0db..0b2596ab 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Marathi <mr@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,11 +303,11 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/ms.po b/po/ms.po
index 787aabf8..082ff845 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:04+0000\n"
"Last-Translator: azlinux <azlinux@gmail.com>\n"
"Language-Team: Malay <ms@li.org>\n"
@@ -25,202 +25,222 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi."
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -276,7 +296,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -284,12 +304,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/nb.po b/po/nb.po
index a96f1bbf..b6840767 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:04+0000\n"
"Last-Translator: Hans Petter Birkeland <hanspb@bluezone.no>\n"
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
@@ -26,227 +26,251 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 5.10 Oppdateringer"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Vedlikeholdt av miljøet (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Bidratt programvare"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
#, fuzzy
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD med Ubuntu 4.10 «Warty Warthog»"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Vedlikeholdt av miljøet (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Vedlikeholdt av miljøet (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Vedlikeholdt av miljøet (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "Non-free (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Non-free (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
#, fuzzy
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
#, fuzzy
msgid "Recommended updates"
msgstr "Anbefalte oppdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Installerer oppdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Installerer oppdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Oppdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
#, fuzzy
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Offisielt støttet"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.10 Oppdateringer"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.10 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "CD med Ubuntu 4.10 «Warty Warthog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Vedlikeholdt av miljøet (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Non-free (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
#, fuzzy
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD med Ubuntu 4.10 «Warty Warthog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Noe programvare er ikke lenger offisielt støttet"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Begrenset opphavsrett"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 5.10 Backports"
@@ -310,7 +334,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Ikke-DFSG-kompatibel programvare"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, fuzzy, python-format
msgid "Server for %s"
msgstr "Tjener for %s"
@@ -318,13 +342,13 @@ msgstr "Tjener for %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
#, fuzzy
msgid "Main server"
msgstr "Hovedtjener"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
#, fuzzy
msgid "Custom servers"
msgstr "Egendefinerte tjenere"
@@ -1767,5 +1791,5 @@ msgstr "Egendefinerte tjenere"
#~ "situation."
#~ msgstr ""
#~ "Dette betyr at ved siden av å oppgradere pakkene kreves det ekstra "
-#~ "handling (som å installere eller fjerne pakker). Bruk «Synaptic» eller "
-#~ "«apt-get dist-upgrade» for å løse problemet."
+#~ "handling (som å installere eller fjerne pakker). Bruk «Synaptic» eller «apt-"
+#~ "get dist-upgrade» for å løse problemet."
diff --git a/po/ne.po b/po/ne.po
index 59f7c78d..9b3faeb2 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:13+0000\n"
"Last-Translator: Jaydeep Bhusal <zaydeep@hotmail.com>\n"
"Language-Team: Nepali <info@mpp.org.np>\n"
@@ -27,230 +27,254 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
#. Description
#: ../data/templates/Ubuntu.info.in:25
#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
+#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "योगदान गरिएको सफ्टवेयर"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "नन-फ्री (बहुभर्स)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "नन-फ्री (बहुभर्स)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
#, fuzzy
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "स्तरवृद्धिहरु स्थापना गर्दै"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "स्तरवृद्धिहरु स्थापना गर्दै"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
#, fuzzy
msgid "Ubuntu 5.10 Security Updates"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
#, fuzzy
msgid "Ubuntu 5.10 Updates"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
#, fuzzy
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
#, fuzzy
msgid "Officially supported"
msgstr "कार्यालय बाट समर्थित"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "नन-फ्री (बहुभर्स)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "कार्यालय बाट समर्थित"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "निषेधित प्रतिलिपि अधिकार"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "युबन्टु ४.१० सुरक्षा अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
#, fuzzy
msgid "Ubuntu 4.10 Updates"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
@@ -312,7 +336,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -320,12 +344,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/nl.po b/po/nl.po
index f458a837..ca03c557 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-21 13:15+0000\n"
"Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n"
"Language-Team: Nederlands <vertaling@vrijschrift.org>\n"
@@ -25,210 +25,234 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 ‘Hoary Hedgehog’"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cd-rom met Ubuntu 5.04 ‘Hoary Hedgehog’"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 veiligheidsupdates"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Cd-rom met Ubuntu 5.10 ‘Breezy Badger’"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 veiligheidsupdates"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Cd-rom met Ubuntu 5.10 ‘Breezy Badger’"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 ‘Edgy Eft’"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Door de gemeenschap beheerd"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Niet-vrije stuurprogramma's voor apparaten"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Beperkte software"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Cd-rom met Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS ‘Dapper Drake’"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Door Canonical beheerde Open Source software"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Door de gemeenschap beheerd (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Door de gemeenschap beheerde Open Source software"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Niet-vrije stuurprogramma's"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Niet-vrije stuurprogramma's voor apparaten "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Beperkte software (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
"Software die door auteursrechten of wettelijke regelingen beperkt wordt."
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Cd-rom met Ubuntu 6.06 LTS ‘Dapper Drake’"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Belangrijke veiligheidsupdates"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Aanbevolen updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Voorgestelde updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Updates die van een nieuwere distributie afkomstig zijn (backports)"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Cd-rom met Ubuntu 5.10 ‘Breezy Badger’"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 veiligheidsupdates"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 ‘Hoary Hedgehog’"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cd-rom met Ubuntu 5.04 ‘Hoary Hedgehog’"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Officieel ondersteund"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 veiligheidsupdates"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 ‘Warty Warthog’"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Door de gemeenschap beheerd (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Niet-vrij (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cd-rom met Ubuntu 4.10 ‘Warty Warthog’"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Niet meer officieel ondersteund"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Beperkte auteursrechten"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 veiligheidsupdates"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 backports"
@@ -288,7 +312,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Software niet compatibel met DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Server voor %s"
@@ -296,12 +320,12 @@ msgstr "Server voor %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Hoofdserver"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Andere servers"
diff --git a/po/nn.po b/po/nn.po
index d0ad627b..31cc6fa0 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-09 15:50+0000\n"
"Last-Translator: Willy André Bergstrøm <root@willyandre.net>\n"
"Language-Team: Norwegian Nynorsk <nn@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,12 +303,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/no.po b/po/no.po
index daffe607..3c6eb447 100644
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2005-06-08 23:10+0200\n"
"Last-Translator: Terance Edward Sola <terance@lyse.net>\n"
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
@@ -26,229 +26,253 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 Security Updates"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD med Ubuntu 5.10 «Breezy Badger»"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD med Ubuntu 5.10 «Breezy Badger»"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 5.10 Updates"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Vedlikeholdt av miljøet (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Bidratt programvare"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
#, fuzzy
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD med Ubuntu 4.10 «Warty Warthog»"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 5.04 Updates"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Vedlikeholdt av miljøet (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Vedlikeholdt av miljøet (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Vedlikeholdt av miljøet (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "Non-free (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Non-free (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
#, fuzzy
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 5.04 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "Ubuntu 5.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Installerer oppdateringer..."
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Installerer oppdateringer..."
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "CD med Ubuntu 5.10 «Breezy Badger»"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD med Ubuntu 5.10 «Breezy Badger»"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
#, fuzzy
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
#, fuzzy
msgid "Officially supported"
msgstr "Offisielt støttet"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.10 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.10 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "CD med Ubuntu 4.10 «Warty Warthog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Vedlikeholdt av miljøet (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Non-free (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
#, fuzzy
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD med Ubuntu 4.10 «Warty Warthog»"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Offisielt støttet"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Begrenset opphavsrett"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 5.10 Updates"
@@ -312,7 +336,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -320,12 +344,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
@@ -994,5 +1018,5 @@ msgstr ""
#~ "situation."
#~ msgstr ""
#~ "Dette betyr at ved siden av å oppgradere pakkene kreves det ekstra "
-#~ "handling (som å installere eller fjerne pakker). Bruk «Synaptic» eller "
-#~ "«apt-get dist-upgrade» for å løse problemet."
+#~ "handling (som å installere eller fjerne pakker). Bruk «Synaptic» eller «apt-"
+#~ "get dist-upgrade» for å løse problemet."
diff --git a/po/oc.po b/po/oc.po
index 9f2b3938..a896af03 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-18 10:01+0000\n"
"Last-Translator: Yannig MARCHEGAY (Kokoyaya) <yannick.marchegay@lokanova."
"com>\n"
@@ -27,214 +27,238 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD-ROM que conten Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Mesas a jorn de seguretat per Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD-ROM amb Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Mesas a jorn de seguretat per Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD-ROM amb Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Pas liure (multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD-ROM que conten Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Mesas a jorn per Ubuntu 6.06 LTS"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Pilòts pas liures"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Pas liure (multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "CD-ROM que conten Ubuntu 6.06 LTS 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Mesas a jorn de seguretat importantas"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Autras mesas a jorn"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Mesas a jorn de seguretat importantas"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD-ROM amb Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Mesas a jorn de seguretat per Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
#, fuzzy
msgid "Ubuntu 5.10 Updates"
msgstr "Mesas a jorn per Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD-ROM que conten Ubuntu 5.04 'Hoary Hedgehog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Mesas a jorn de seguretat per Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Mesas a jorn per Ubuntu 6.06 LTS"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Pas liure (multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
#, fuzzy
msgid "Ubuntu 4.10 Security Updates"
msgstr "Mesas a jorn per Ubuntu 6.06 LTS"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
#, fuzzy
msgid "Ubuntu 4.10 Updates"
msgstr "Mesas a jorn per Ubuntu 6.06 LTS"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -294,7 +318,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Servidor per %s"
@@ -302,12 +326,12 @@ msgstr "Servidor per %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Servidor principal"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Servidors personalizats"
diff --git a/po/pa.po b/po/pa.po
index 766049de..8b4cbadc 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pa\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:16+0000\n"
"Last-Translator: Amanpreet Singh Alam <amanpreetalam@yahoo.com>\n"
"Language-Team: Punjabi <fedora-transa-pa@redhat.com>\n"
@@ -25,204 +25,224 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "<b>ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ</b>"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -280,7 +300,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -288,12 +308,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 45732f58..9acc28a9 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager cvs\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-21 12:05+0000\n"
"Last-Translator: Dominik Zablotny <doza@sztorm.net>\n"
"Language-Team: Polish <translators@gnomepl.org>\n"
@@ -26,210 +26,234 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD-ROM z Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD-ROM z Ubuntu 5.10 \"Breezy Badger\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD-ROM z Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 \"Edgy Eft\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Pod opieką społeczeństwa"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Własnościowe sterowniki dla urządzeń"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Ograniczone oprogramowanie"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CD-ROM z Ubuntu 6.10 \"Edgy Eft\""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS \"Dapper Drake\""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Oprogramowanie Open Source wspierane przez firmę Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Obsługiwane przez społeczność (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Oprogramowanie Open Source pod opieką społeczeństwa"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Sterowniki nie-wolnodostępne"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Własnościowe sterowniki dla urządzeń "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Oprogramowanie nie-wolnodostępne (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
"Oprogramowanie ograniczone prawami autorskimi lub problemami natury prawnej"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "CD-ROM z Ubuntu 6.06 LTS \"Dapper Drake\""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Ważne aktualizacje bezpieczeństwa"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Aktualizacje polecane"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Aktualizacje proponowane"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Aktualizacje backportowane"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD-ROM z Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Aktualizacje dla Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD-ROM z Ubuntu 5.04 \"Hoary Hedgehog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Wspierane oficjalnie"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Aktualizacje dla Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Aktualizacje dla Ubuntu 5.04 (backporty)"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu·4.10·\"Warty·Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Utrzymywane przez społeczność (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Nie-wolnodostępne (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD-ROM z Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Już nieobsługiwane"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "O ograniczonych prawach kopiowania"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Aktualizacje dla Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Aktualizacje dla Ubuntu 4.10 (backporty)"
@@ -289,7 +313,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Oprogramowanie niekompatybilne z DFSG."
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Serwer dla kraju %s"
@@ -297,12 +321,12 @@ msgstr "Serwer dla kraju %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Serwer główny"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Inne serwery"
diff --git a/po/ps.po b/po/ps.po
index 69a681ee..1f2accdc 100644
--- a/po/ps.po
+++ b/po/ps.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Pushto <ps@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,11 +303,11 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/pt.po b/po/pt.po
index afaf18c3..1c6b1551 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 11:04+0000\n"
"Last-Translator: Tiago Silva <tiagosilva29@gmail.com>\n"
"Language-Team: Ubuntu Portuguese Team <ubuntu-pt.org>\n"
@@ -24,209 +24,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cdrom com o Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Actualizações de Segurança do Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Cdrom com o Ubuntu 5.10 \"Breezy Badger\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Actualizações de Segurança do Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Cdrom com o Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Mantido pela comunidade"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Drivers proprietários para dispositivos"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Software Restrito"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Cdrom com o Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Software de Código Aberto suportado pela Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Mantido pela comunidade (universal)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Software de Código Fonte Aberto mantido pela comunidade"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Controladores não-livres"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Drivers proprietários para dispositivos "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Software não-livre (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Software restringido por copyright ou questões legais"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Actualizações de segurança importantes"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Actualizações recomendadas"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Actualizações propostas"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Actualizações dos repositórios \"backport\""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Cdrom com o Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Actualizações de Segurança"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Actualizações"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cdrom com o Ubuntu 5.04 \"Hoary Hedgehog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Suportado Oficialmente"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Actualizações de Segurança do Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Actualizações do Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Backports do Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Mantido pela comunidade (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Não-livre (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Sem mais suporte oficial"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Direitos de autor restritos"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Actualizações de Segurança do Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Actualizações do Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Backports do Ubuntu 4.10"
@@ -286,7 +310,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Software compatível-DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Servidor para %s"
@@ -294,12 +318,12 @@ msgstr "Servidor para %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Servidor principal"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Servidores personalizados"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 70b19cc6..0faf8861 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-21 01:31+0000\n"
"Last-Translator: Rafael Proença <cypherbios@ubuntu.com>\n"
"Language-Team: Ubuntu-BR <tradutores@listas.ubuntubrasil.org>\n"
@@ -25,209 +25,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cdrom com o Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Atualizações de segurança do Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Cdrom com o Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Atualizações de segurança do Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Cdrom com o Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Mantido pela comunidade"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Controladores proprietários para dispositivos"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Software restrito"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Cdrom com Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Programa de Código Aberto mantido pela Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Mantido pela Comunidade (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Programa de Código Aberto mantido pela Comunidade"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Drivers Não-livres"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Controladores proprietários para dispositivos "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Programas restritos (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Software restrito por copyright ou problemas legais"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Principais Atualizações de Segurança"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Atualizações recomendadas"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Atualizações sugeridas"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Atualizações \"Backport\""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Cdrom com o Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Atualizações de segurança do Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Atualizações do Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Backports do Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cdrom com o Ubuntu 5.04 'Hoary Hedgehog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Suportadas oficialmente"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Atualizações de segurança do Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Atualizações do Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Backports do Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Mantido pela comunidade (Universo)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Não-livres (Multiverso)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Não é mais suportado oficialmente"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Copyright restrito"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Atualizações de segurança do Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Atualizações do Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Backports do Ubuntu 4.10"
@@ -287,7 +311,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Programas não compatíveis com a DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Servidor no(a) %s"
@@ -295,12 +319,12 @@ msgstr "Servidor no(a) %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Servidor principal"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Servidores personalizados"
diff --git a/po/python-apt.pot b/po/python-apt.pot
index e8fbfc41..cac3604f 100644
--- a/po/python-apt.pot
+++ b/po/python-apt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\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"
@@ -24,201 +24,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -274,7 +294,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -282,11 +302,11 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/qu.po b/po/qu.po
index 3d2ef49c..44c158ce 100644
--- a/po/qu.po
+++ b/po/qu.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-09 15:50+0000\n"
"Last-Translator: Rosetta Administrators <rosetta@launchpad.net>\n"
"Language-Team: Quechua <qu@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,12 +303,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/ro.po b/po/ro.po
index 57ddf8b9..3a9d20ed 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:13+0000\n"
"Last-Translator: Sami POTIRCA <spotirca@gmail.com>\n"
"Language-Team: Romanian <gnomero-list@lists.sourceforge.net>\n"
@@ -27,211 +27,235 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cdrom cu Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Actualizări de Securitate Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Cdrom cu Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Actualizări de Securitate Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Cdrom cu Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Pachete întreţinute de comunitate (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Software în contribuţie"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Cdrom cu Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Pachete întreţinute de comunitate (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Pachete întreţinute de comunitate (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Pachete întreţinute de comunitate (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Pachete non-libere"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Software restricţionat (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Cdrom cu Ubuntu 6.06 LTS 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Actualizări importante de securitate"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Actualizări recomandate"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Pachete propuse"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Actualizări portate înapoi"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Cdrom cu Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Actualizări de Securitate Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Actualizări Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cdrom cu Ubuntu 5.04 'Hoary Hedgehog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Pachete suportate oficial"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Actualizări de Securitate Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Actualizări Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Pachete întreţinute de comunitate (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Pachete non-libere (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cdrom cu Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Pachete suportate oficial"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Copyright restrictiv"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Actualizări de securitate Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Actualizări Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 Backports"
@@ -291,7 +315,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Software incompatibil DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Server pentru %s"
@@ -299,12 +323,12 @@ msgstr "Server pentru %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Server principal"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Servere preferenţiale"
diff --git a/po/ru.po b/po/ru.po
index 408a7e36..87314bb0 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-18 09:11+0000\n"
"Last-Translator: Igor Zubarev <igor4u@gmail.com>\n"
"Language-Team: Russian <ru@li.org>\n"
@@ -27,209 +27,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "CD с Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Обновления безопасности Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "CD с Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Обновления безопасности Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "CD с Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Поддерживается сообществом"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Проприетарные драйвера устройств"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Несвободное ПО"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "CDROM с Ubuntu 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Open Source приложения, поддерживаемые Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Поддерживается сообществом (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Поддерживаемое сообществом свободное ПО"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Несвободные драйвера"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Проприетарные драйвера устройств "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Несвободное обеспечение (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Программы, ограниченные патентами или законами"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "CD с Ubuntu 6.06 LTS 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Важные обновления безопасности"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Рекомендованые обновления"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Предлагаемые обновления"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Обновления в бэкпортах"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "CD с Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Обновления безопасности Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Обновления Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "CD с Ubuntu 5.04 'Hoary Hedgehog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Официально поддерживается"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Обновления безопасности Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Обновления Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 бэкпорты"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Поддерживается сообществом (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Несвободное (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "CD с Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Официально больше не поддерживается"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Ограниченные авторские права"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Обновления безопасности Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Обновления Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 бэкпорты"
@@ -289,7 +313,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Не-DFSG-совместимое ПО"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Сервер %s"
@@ -297,12 +321,12 @@ msgstr "Сервер %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Основной сервер"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Свои сервера"
diff --git a/po/rw.po b/po/rw.po
index 64a456ef..b0e55e48 100644
--- a/po/rw.po
+++ b/po/rw.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:17+0000\n"
"Last-Translator: Steve Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
@@ -33,226 +33,250 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr "5"
#. Description
#: ../data/templates/Ubuntu.info.in:25
#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "5"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "5"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "5"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr "5"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
+#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "5"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Kohereza Nta gukoresha bisesuye"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "5"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "Kigenga"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Kigenga"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
#, fuzzy
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Kwinjiza porogaramu"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Kwinjiza porogaramu"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
#, fuzzy
msgid "Ubuntu 5.10 Security Updates"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
#, fuzzy
msgid "Ubuntu 5.10 Updates"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
#, fuzzy
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "5"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "5"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
#, fuzzy
msgid "Non-free (Multiverse)"
msgstr "Kigenga"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
#, fuzzy
msgid "Restricted copyright"
msgstr "Uburenganzira bw'umuhimbyi"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
#, fuzzy
msgid "Ubuntu 4.10 Security Updates"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
#, fuzzy
msgid "Ubuntu 4.10 Updates"
msgstr "5"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "5"
@@ -312,7 +336,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -320,12 +344,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/sk.po b/po/sk.po
index cc679d98..69a774dd 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:17+0000\n"
"Last-Translator: Peter Chabada <ubuntu@chabada.sk>\n"
"Language-Team: Slovak <sk-i18n@linux.sk>\n"
@@ -26,226 +26,250 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 5.10 - aktualizácie"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Udržiavané komunitou (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Softvér závislý na neslobornom softvéri"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
#, fuzzy
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Udržiavané komunitou (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Udržiavané komunitou (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Udržiavané komunitou (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "Neslobodné (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Neslobodné (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
#, fuzzy
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Nainštalovať _aktualizácie"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Nainštalovať _aktualizácie"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 - aktualizácie"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 - backporty"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
#, fuzzy
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Oficiálne podporované"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.10 - aktualizácie"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.10 - backporty"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Udržiavané komunitou (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Neslobodné (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
#, fuzzy
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Niektoré programy už nie sú viac oficiálne podporované"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "S obmedzujúcou licenciou"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 bezpečnostné aktualizácie"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 aktualizácie"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 5.10 - backporty"
@@ -308,7 +332,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Softvér nekompatibilný s DFSG"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Server pre %s"
@@ -316,13 +340,13 @@ msgstr "Server pre %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
#, fuzzy
msgid "Main server"
msgstr "Najbližší server"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
#, fuzzy
msgid "Custom servers"
msgstr "Najbližší server"
diff --git a/po/sl.po b/po/sl.po
index 62865651..ce48acb1 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:06+0000\n"
"Last-Translator: Tadej <tadej.888@gmail.com>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@@ -26,201 +26,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -276,7 +296,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -284,12 +304,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/sq.po b/po/sq.po
index cc975b1d..00fb881c 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-09 15:50+0000\n"
"Last-Translator: Alejdin Tirolli <a.tirolli@hotmail.com>\n"
"Language-Team: Albanian <sq@li.org>\n"
@@ -25,202 +25,222 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "%s përmirësimet"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -277,7 +297,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Serveri për %s"
@@ -285,13 +305,13 @@ msgstr "Serveri për %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
#, fuzzy
msgid "Main server"
msgstr "Serveri më i afërt"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
#, fuzzy
msgid "Custom servers"
msgstr "Serveri më i afërt"
@@ -432,9 +452,9 @@ msgstr "Serveri më i afërt"
#~ " Please install one of the packages above first using synaptic or apt-get "
#~ "before proceeding."
#~ msgstr ""
-#~ "Sistemi juaj nuk përmban një »ubuntu-desktop«-, një »kubuntu-desktop»- "
-#~ "apo një »edubuntu-desktop«-Paketë.Prandaj nuk mundi saktësohej Versioni "
-#~ "juaj i Ubuntu-se.\n"
+#~ "Sistemi juaj nuk përmban një »ubuntu-desktop«-, një »kubuntu-desktop»- apo "
+#~ "një »edubuntu-desktop«-Paketë.Prandaj nuk mundi saktësohej Versioni juaj i "
+#~ "Ubuntu-se.\n"
#~ "Ju lutemi instaloni njërën nga paketat e theksuara nëpërmjet Synaptic ose "
#~ "apt-get, para se të vazhdoni."
diff --git a/po/sr.po b/po/sr.po
index 461de261..4f8c6390 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:17+0000\n"
"Last-Translator: Vladimir Samardzic <vladosam@hotmail.com>\n"
"Language-Team: Serbian <sr@li.org>\n"
@@ -26,201 +26,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -276,7 +296,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -284,12 +304,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 570ae6ea..e6729ded 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 05:06+0000\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@@ -27,209 +27,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Säkerhetsuppdateringar för Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Säkerhetsuppdateringar för Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 \"Edgy Eft\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Gemenskapsunderhållen"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Properitära drivrutiner för enheter"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Inskränkt programvara"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS \"Dapper Drake\""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Öppen källkodsprogramvara som stöds av Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Gemenskapsunderhållen (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Öppen källkodsprogramvara underhållen av gemenskapen"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Ickefria drivrutiner"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Properitära drivrutiner för enheter "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Inskränkt programvara (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Programvara begränsad av upphovsrätt eller juridiska avtal"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Viktiga säkerhetsuppdateringar"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Rekommenderade uppdateringar"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Föreslagna uppdateringar"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Bakåtporterade uppdateringar"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Säkerhetsuppdateringar"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Uppdateringar"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Bakåtportar"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Stöds officiellt"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Säkerhetsuppdateringar för Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Uppdateringar för Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Bakåtporteringar för Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Gemenskapsunderhållen (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Ickefri (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Stöds inte längre officiellt"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Begränsad upphovsrätt"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Säkerhetsuppdateringar för Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Uppdateringar för Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Bakåtporteringar för Ubuntu 4.10"
@@ -289,7 +313,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Icke-DFSG-kompatibel programvara"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "Server för %s"
@@ -297,12 +321,12 @@ msgstr "Server för %s"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Huvudserver"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Anpassade servrar"
diff --git a/po/ta.po b/po/ta.po
index 07a9220e..05df304e 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:06+0000\n"
"Last-Translator: Raghavan <vijay.raghavan08@gmail.com>\n"
"Language-Team: Tamil <ta@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,12 +303,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/th.po b/po/th.po
index af6bd96b..2253ebce 100644
--- a/po/th.po
+++ b/po/th.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:17+0000\n"
"Last-Translator: Roys Hengwatanakul <roysheng@gmail.com>\n"
"Language-Team: Thai <th@li.org>\n"
@@ -25,209 +25,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "อูบันตู 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "ซีดีรอมที่มีอูบันตู 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "อูบันตู 5.04 ปรับปรุงด้านความปลอดภัย"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "ซีดีรอมที่มี อูบันตู 5.10 'Breezy Badger'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "อูบันตู 5.04 ปรับปรุงด้านความปลอดภัย"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "ซีดีรอมที่มี อูบันตู 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "อูบันตู 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "ชุมชนดูแล"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "ซอฟต์แวร์จำกัดการใช้งาน"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "ซีดีรอมที่มีอูบันตู 6.10 'Edgy Eft'"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "อูบันตู 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "ซอฟต์แบบเปิดเผยสนับสนุนโดย Canonical"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "ชุมชนดูแล (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "ชุมชนดูแล ซอฟต์แวร์แบบเปิดเผย"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "ไดรเวอร์ที่ไม่ฟรี"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์ "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "ซอฟต์แวร์จำกัดการใช้งาน(Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "ซอฟต์แวร์นี้มีลิขสิทธ์หรือข้อกฏหมายจำกัดอยู่"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "ซีดีรอมที่มีอูบันตู 6.06 LST 'Dapper Drake'"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "ปรับปรุงด้านความปลอดภัยที่สำคัญ"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "การปรับปรุงที่แนะนำให้ทำ"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "การปรับปรุงที่เสนอให้ทำ"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "การปรับปรุงแบบย้อนหลัง"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "อูบันตู 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "ซีดีรอมที่มี อูบันตู 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "อูบันตู 5.10 Security Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "อูบันตู 5.10 Updates"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "อูบันตู 5.10 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "อูบันตู 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "ซีดีรอมที่มีอูบันตู 5.04 'Hoary Hedgehog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "สนับสนุนอย่างเป็นทางการ"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "อูบันตู 5.04 ปรับปรุงด้านความปลอดภัย"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "อูบันตู 5.04 ปรับปรุง"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "อูบันตู 5.04 พอร์ตย้อนหลัง"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "อูบันตู 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "ชุมชนดูแล (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "ไม่ฟรี(ลิขสิทธิ์)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "ซีดีรอมที่มีอูบันตู 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "ไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "จำกัดลิขสิทธิ์"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "อูบันตู 4.10 ปรับปรุงด้านความปลอดภัย"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "อูบันตู 4.10 ปรับปรุง"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "อูบันตู 4.10 พอร์ตย้อนหลัง"
@@ -287,7 +311,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "ไม่เข้ากับ DFSG ซอฟแวร์"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "เซิร์ฟเวอร์สำหรับประเทศ %s"
@@ -295,12 +319,12 @@ msgstr "เซิร์ฟเวอร์สำหรับประเทศ %s
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "เซิร์ฟเวอร์หลัก"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "เซิร์ฟเวอร์ที่กำหนดเอาเอง"
diff --git a/po/tl.po b/po/tl.po
index b49987cc..4a523ff0 100644
--- a/po/tl.po
+++ b/po/tl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-09-16 15:44+0000\n"
"Last-Translator: Ariel S. Betan <ariel.betan@up.edu.ph>\n"
"Language-Team: Tagalog <tl@li.org>\n"
@@ -25,207 +25,227 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Inaalagaan ng kumunidad (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Inaalagaan ng kumunidad (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Inaalagaan ng kumunidad (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Release Notes"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Mga updates mula sa Internet"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Opisyal na sinusuportahan"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Inaalagaan ng kumunidad (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Di-malaya (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Mahigpit na copyright"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -285,7 +305,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "Software na Di-DFSG-compatible"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -293,12 +313,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 22f74965..73c1d726 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-21 20:58+0000\n"
"Last-Translator: Atilla Karaman <atillakaraman@gmail.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
@@ -26,209 +26,233 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog' Cdrom'u"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 Güvenlik Güncelleştirmeleri"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 'Breezy Badger' Cdrom'u"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 Güvenlik Güncelleştirmeleri"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 'Breezy Badger' Cdrom'u"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Topluluk tarafından bakılan"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "Aygıtlar için kapalı kaynak sürücüler"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "Kısıtlı yazılımlar"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft' Cdrom'u"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Canonical Açık Kaynak yazılımı destekledi"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Topluluk tarafından bakılan (universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Topluluk tarafından bakılan Açık Kaynak Kodlu yazılımlar"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "Özgür olmayan sürücüler"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "Aygıtlar için lisanslı sürücüler "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "Kısıtlı yazılımlar (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr "Yazılım telif haklarıyla veya yasal sorunlar sebebiyle kısıtlanmıştır"
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake' Cdrom'u"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "Önemli güvenlik güncelleştirmeleri"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "Önerilen güncellemeler"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Teklif edilmiş güncellemeler"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Geritaşınmış (backported) güncellemeler"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger' Cdrom'u"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Geritaşınmış Yazılımlar (Backports)"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog' Cdrom'u"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Resmi olarak desteklenenler"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 Güvenlik Güncelleştirmeleri"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 Güncelleştirmeleri"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 Geritaşınmış Yazılımlar (Backports)"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Topluluk tarafından bakılan (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Özgür olmayan (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog' Cdrom'u"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "Artık resmi olarak desteklenmiyor"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Sınırlı telif hakkı"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 Güvenlik Güncelleştirmeleri"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 Güncelleştirmeleri"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 Geritaşınmış Yazılımlar (Backports)"
@@ -288,7 +312,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "DFSG Uyumlu Olmayan Yazılım"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "%s sunucusu"
@@ -296,12 +320,12 @@ msgstr "%s sunucusu"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "Ana sunucu"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "Özel sunucular"
diff --git a/po/uk.po b/po/uk.po
index 93f1db6e..1171937c 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: uk(5)\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:15+0000\n"
"Last-Translator: Vadim Abramchuck <abram@email.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
@@ -26,206 +26,226 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Підтримується спільнотою (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Підтримується спільнотою (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Підтримується спільнотою (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "<b>Оновлення через Інтернет</b>"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "Офіційно підтримуються"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Підтримується спільнотою (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Не-вільний (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Обмежені авторські права"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -285,7 +305,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -293,12 +313,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/ur.po b/po/ur.po
index 8754bff0..b92e1658 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-05-19 02:46+0000\n"
"Last-Translator: Hameed محمد حمید <hameeduddin517@yahoo.com>\n"
"Language-Team: Urdu <urd@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,12 +303,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/urd.po b/po/urd.po
index b8c487b8..c4a7fd02 100644
--- a/po/urd.po
+++ b/po/urd.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-05-07 01:53+0000\n"
"Last-Translator: Hameed محمد حمید <hameeduddin517@yahoo.com>\n"
"Language-Team: Urdu <urd@li.org>\n"
@@ -25,201 +25,221 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
msgid "Pre-released updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
msgid "Unsupported updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -275,7 +295,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -283,12 +303,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/vi.po b/po/vi.po
index a03be4cd..4c528fbe 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager Gnome HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:17+0000\n"
"Last-Translator: Tran The Trung <tttrung@hotmail.com>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
@@ -25,229 +25,253 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Bản cập nhật bảo mặt Ubuntu 5.10"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Bản cập nhật bảo mặt Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
#, fuzzy
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Bản cập nhật Ubuntu 5.10"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "Do cộng đồng bảo quản (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
#, fuzzy
msgid "Restricted software"
msgstr "Phần mềm đã đóng góp"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
#, fuzzy
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
#, fuzzy
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Bản cập nhật Ubuntu 5.04"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "Do cộng đồng bảo quản (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "Do cộng đồng bảo quản (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "Do cộng đồng bảo quản (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
#, fuzzy
msgid "Non-free drivers"
msgstr "Không tự do (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Không tự do (Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
#, fuzzy
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Bản cập nhật Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "Bản cập nhật bảo mặt Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Đang cài đặt bản cập nhật..."
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Đang cài đặt bản cập nhật..."
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
#, fuzzy
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Bản cập nhật bảo mặt Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Bản cập nhật Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Bản cập nhật Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
#, fuzzy
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
#, fuzzy
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
#, fuzzy
msgid "Officially supported"
msgstr "Được hỗ trợ một cách chính thức"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "Bản cập nhật bảo mặt Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Bản cập nhật Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "Bản cập nhật Ubuntu 5.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
#, fuzzy
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "Do cộng đồng bảo quản (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "Không tự do (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
#, fuzzy
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
#, fuzzy
msgid "No longer officially supported"
msgstr "Được hỗ trợ một cách chính thức"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "Bản quyền bị giới hạn"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Bản cập nhật bảo mặt Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Bản cập nhật Ubuntu 4.10"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "Bản cập nhật Ubuntu 5.10"
@@ -310,7 +334,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -318,12 +342,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
@@ -959,8 +983,8 @@ msgstr ""
#~ "A new release with the codename '%s' is available. Please see http://www."
#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "Có một bản phát hành mới có tên mã « %s ». Hãy xem <http://www."
-#~ "ubuntulinux.org> để tìm hướng dẫn nâng cấp."
+#~ "Có một bản phát hành mới có tên mã « %s ». Hãy xem <http://www.ubuntulinux."
+#~ "org> để tìm hướng dẫn nâng cấp."
#~ msgid "Never show this message again"
#~ msgstr "Đừng hiện thông điệp này lần nữa."
diff --git a/po/xh.po b/po/xh.po
index b3e5cc74..0a969f24 100644
--- a/po/xh.po
+++ b/po/xh.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-notifier\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-05 20:45+0000\n"
"Last-Translator: Canonical Ltd <translations@canonical.com>\n"
"Language-Team: Xhosa <xh-translate@ubuntu.com>\n"
@@ -25,204 +25,224 @@ msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
msgid "Community-maintained"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
msgid "Community-maintained (universe)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
msgid "Community-maintained Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
#, fuzzy
msgid "Important security updates"
msgstr "Bonisa izihlaziyo"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "Bonisa izihlaziyo"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Bonisa izihlaziyo"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
msgid "Community-maintained (Universe)"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -280,7 +300,7 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -288,12 +308,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index af823ea3..8ca3f374 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:00+0000\n"
"Last-Translator: catinsnow <catinsnow@gmail.com>\n"
"Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n"
@@ -25,210 +25,234 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'光盘"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04 安全更新"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 'Breezy Badger' 光盘"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04 安全更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 'Breezy Badger' 光盘"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "社区维护(Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr "设备的专有驱动"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr "受限软件"
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft' 光盘"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
#, fuzzy
msgid "Canonical-supported Open Source software"
msgstr "社区维护(Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "社区维护(universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "社区维护开源软件"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr "非自由驱动"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr "设备的属性驱动 "
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr "受限软件(Multiverse)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake' 光盘"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "重要安全更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "建议更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "建议更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "Backported 更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger' 光盘"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 安全更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 移植"
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'光盘"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "官方支持"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04 安全更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.10 更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.04 Backports"
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "社区维护"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "非自由"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'光盘"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr "官方不再支持"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "版权限制"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 安全更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 4.10 Backports"
@@ -288,7 +312,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "非DFSG兼容软件"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "%s 的服务器"
@@ -296,12 +320,12 @@ msgstr "%s 的服务器"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "主服务器"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "自定义服务器"
diff --git a/po/zh_HK.po b/po/zh_HK.po
index 6571d85d..6eb25f43 100644
--- a/po/zh_HK.po
+++ b/po/zh_HK.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.42.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:15+0000\n"
"Last-Translator: Abel Cheung <abelcheung@gmail.com>\n"
"Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n"
@@ -23,207 +23,227 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
-msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgid "Ubuntu 8.04 'Hardy Heron'"
msgstr ""
#. Description
#: ../data/templates/Ubuntu.info.in:25
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+msgid "Ubuntu 7.04 'Feisty Fawn'"
+msgstr ""
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:129
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "協力維護軟件 (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "協力維護軟件 (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "協力維護軟件 (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "發行通告"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "網絡更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "正式支援"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "協力維護軟件 (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "非自由軟件 (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "版權受限"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -283,7 +303,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "和 DFSG 不相容的軟件"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr ""
@@ -291,12 +311,12 @@ msgstr ""
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr ""
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr ""
diff --git a/po/zh_TW.po b/po/zh_TW.po
index e5ac71de..abfcba0c 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.41.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-30 22:28+0200\n"
+"POT-Creation-Date: 2008-02-18 16:50+0100\n"
"PO-Revision-Date: 2006-10-16 04:15+0000\n"
"Last-Translator: SOC Ho <soc.scho@gmail.com>\n"
"Language-Team: Chinese (Taiwan) <zh-l10n@linux.org.tw>\n"
@@ -20,208 +20,232 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../data/templates/Ubuntu.info.in:8
#, fuzzy
+msgid "Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:25
+#, fuzzy
+msgid "Cdrom with Ubuntu 8.04 'Hardy Heron'"
+msgstr "Ubuntu 5.04 'Hoary Hedgehog'的光碟"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:60
+#, fuzzy
+msgid "Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.04安全性更新"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:77
+#, fuzzy
+msgid "Cdrom with Ubuntu 7.10 'Gutsy Gibbon'"
+msgstr "Ubuntu 5.10 'Breezy Badger'的光碟"
+
+#. Description
+#: ../data/templates/Ubuntu.info.in:112
+#, fuzzy
msgid "Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.04安全性更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:25
+#: ../data/templates/Ubuntu.info.in:129
#, fuzzy
msgid "Cdrom with Ubuntu 7.04 'Feisty Fawn'"
msgstr "Ubuntu 5.10 'Breezy Badger'的光碟"
#. Description
-#: ../data/templates/Ubuntu.info.in:59
+#: ../data/templates/Ubuntu.info.in:163
msgid "Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:64
+#: ../data/templates/Ubuntu.info.in:168
#, fuzzy
msgid "Community-maintained"
msgstr "協力維護軟體 (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:68
+#: ../data/templates/Ubuntu.info.in:172
msgid "Proprietary drivers for devices"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:70
+#: ../data/templates/Ubuntu.info.in:174
msgid "Restricted software"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:76
+#: ../data/templates/Ubuntu.info.in:180
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "Ubuntu 6.10 'Edgy Eft'的光碟"
#. Description
-#: ../data/templates/Ubuntu.info.in:110
+#: ../data/templates/Ubuntu.info.in:214
msgid "Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "Ubuntu 6.06 LTS 'Dapper Drake'"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:113
+#: ../data/templates/Ubuntu.info.in:217
msgid "Canonical-supported Open Source software"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:115
+#: ../data/templates/Ubuntu.info.in:219
#, fuzzy
msgid "Community-maintained (universe)"
msgstr "協力維護軟體 (Universe)"
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:116
+#: ../data/templates/Ubuntu.info.in:220
#, fuzzy
msgid "Community-maintained Open Source software"
msgstr "協力維護軟體 (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:118
+#: ../data/templates/Ubuntu.info.in:222
msgid "Non-free drivers"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:119
+#: ../data/templates/Ubuntu.info.in:223
msgid "Proprietary drivers for devices "
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:121
+#: ../data/templates/Ubuntu.info.in:225
msgid "Restricted software (Multiverse)"
msgstr ""
#. CompDescriptionLong
-#: ../data/templates/Ubuntu.info.in:122
+#: ../data/templates/Ubuntu.info.in:226
msgid "Software restricted by copyright or legal issues"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:127
+#: ../data/templates/Ubuntu.info.in:231
msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'"
msgstr "含Ubuntu 6.06 LTS 'Dapper Drake'之光碟"
#. Description
-#: ../data/templates/Ubuntu.info.in:139
+#: ../data/templates/Ubuntu.info.in:243
msgid "Important security updates"
msgstr "重要的安全更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:144
+#: ../data/templates/Ubuntu.info.in:248
msgid "Recommended updates"
msgstr "建議的安全更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:149
+#: ../data/templates/Ubuntu.info.in:253
#, fuzzy
msgid "Pre-released updates"
msgstr "建議的安全更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:154
+#: ../data/templates/Ubuntu.info.in:258
#, fuzzy
msgid "Unsupported updates"
msgstr "重要的安全更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:161
+#: ../data/templates/Ubuntu.info.in:265
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
#. Description
-#: ../data/templates/Ubuntu.info.in:174
+#: ../data/templates/Ubuntu.info.in:278
msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'的光碟"
#. Description
-#: ../data/templates/Ubuntu.info.in:186
+#: ../data/templates/Ubuntu.info.in:290
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10安全性更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:191
+#: ../data/templates/Ubuntu.info.in:295
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:196
+#: ../data/templates/Ubuntu.info.in:300
msgid "Ubuntu 5.10 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:203
+#: ../data/templates/Ubuntu.info.in:307
msgid "Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'"
#. Description
-#: ../data/templates/Ubuntu.info.in:216
+#: ../data/templates/Ubuntu.info.in:320
msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'"
msgstr "Ubuntu 5.04 'Hoary Hedgehog'的光碟"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:219 ../data/templates/Debian.info.in:94
+#: ../data/templates/Ubuntu.info.in:323 ../data/templates/Debian.info.in:94
msgid "Officially supported"
msgstr "官方支援"
#. Description
-#: ../data/templates/Ubuntu.info.in:228
+#: ../data/templates/Ubuntu.info.in:332
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.04安全性更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:233
+#: ../data/templates/Ubuntu.info.in:337
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:238
+#: ../data/templates/Ubuntu.info.in:342
msgid "Ubuntu 5.04 Backports"
msgstr ""
#. Description
-#: ../data/templates/Ubuntu.info.in:244
+#: ../data/templates/Ubuntu.info.in:348
msgid "Ubuntu 4.10 'Warty Warthog'"
msgstr "Ubuntu 4.10 'Warty Warthog'"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:250
+#: ../data/templates/Ubuntu.info.in:354
#, fuzzy
msgid "Community-maintained (Universe)"
msgstr "協力維護軟體 (Universe)"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:252
+#: ../data/templates/Ubuntu.info.in:356
msgid "Non-free (Multiverse)"
msgstr "非自由軟體 (Multiverse)"
#. Description
-#: ../data/templates/Ubuntu.info.in:257
+#: ../data/templates/Ubuntu.info.in:361
msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'"
msgstr "含Ubuntu 4.10 'Warty Warthog'之光碟"
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:260
+#: ../data/templates/Ubuntu.info.in:364
msgid "No longer officially supported"
msgstr ""
#. CompDescription
-#: ../data/templates/Ubuntu.info.in:262
+#: ../data/templates/Ubuntu.info.in:366
msgid "Restricted copyright"
msgstr "版權受限制"
#. Description
-#: ../data/templates/Ubuntu.info.in:269
+#: ../data/templates/Ubuntu.info.in:373
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10安全性更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:274
+#: ../data/templates/Ubuntu.info.in:378
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10更新"
#. Description
-#: ../data/templates/Ubuntu.info.in:279
+#: ../data/templates/Ubuntu.info.in:383
msgid "Ubuntu 4.10 Backports"
msgstr ""
@@ -281,7 +305,7 @@ msgid "Non-DFSG-compatible Software"
msgstr "不符合 DFSG 的軟體"
#. TRANSLATORS: %s is a country
-#: ../aptsources/distro.py:192 ../aptsources/distro.py:399
+#: ../aptsources/distro.py:194 ../aptsources/distro.py:401
#, python-format
msgid "Server for %s"
msgstr "位於%s的伺服器"
@@ -289,12 +313,12 @@ msgstr "位於%s的伺服器"
#. More than one server is used. Since we don't handle this case
#. in the user interface we set "custom servers" to true and
#. append a list of all used servers
-#: ../aptsources/distro.py:211 ../aptsources/distro.py:216
-#: ../aptsources/distro.py:230
+#: ../aptsources/distro.py:213 ../aptsources/distro.py:218
+#: ../aptsources/distro.py:232
msgid "Main server"
msgstr "主要伺服器"
-#: ../aptsources/distro.py:233
+#: ../aptsources/distro.py:235
msgid "Custom servers"
msgstr "個人伺服器"
diff --git a/python/apt_pkgmodule.cc b/python/apt_pkgmodule.cc
index 15f7d238..ae1cf7be 100644
--- a/python/apt_pkgmodule.cc
+++ b/python/apt_pkgmodule.cc
@@ -507,6 +507,11 @@ extern "C" void initapt_pkg()
AddInt(Dict,"CurStateHalfInstalled",pkgCache::State::HalfInstalled);
AddInt(Dict,"CurStateConfigFiles",pkgCache::State::ConfigFiles);
AddInt(Dict,"CurStateInstalled",pkgCache::State::Installed);
+
+ AddInt(Dict,"InstStateOk",pkgCache::State::Ok);
+ AddInt(Dict,"InstStateReInstReq",pkgCache::State::ReInstReq);
+ AddInt(Dict,"InstStateHold",pkgCache::State::Hold);
+ AddInt(Dict,"InstStateHoldReInstReq",pkgCache::State::HoldReInstReq);
}
/*}}}*/
diff --git a/python/cache.cc b/python/cache.cc
index aa4d9ffc..36e49710 100644
--- a/python/cache.cc
+++ b/python/cache.cc
@@ -20,10 +20,13 @@
#include <apt-pkg/packagemanager.h>
#include <apt-pkg/pkgsystem.h>
#include <apt-pkg/sourcelist.h>
+#include <apt-pkg/algorithms.h>
#include <Python.h>
#include "progress.h"
+class pkgSourceList;
+
/*}}}*/
struct PkgListStruct
{
@@ -76,53 +79,18 @@ static PyObject *PkgCacheUpdate(PyObject *Self,PyObject *Args)
PyObject *CacheFilePy = GetOwner<pkgCache*>(Self);
pkgCacheFile *Cache = GetCpp<pkgCacheFile*>(CacheFilePy);
- PyObject *pyOpProgressInst = 0;
PyObject *pyFetchProgressInst = 0;
- if (PyArg_ParseTuple(Args, "O|O", &pyFetchProgressInst,&pyOpProgressInst) == 0)
+ PyObject *pySourcesList = 0;
+ if (PyArg_ParseTuple(Args, "OO", &pyFetchProgressInst,&pySourcesList) == 0)
return 0;
- FileFd Lock;
- if (_config->FindB("Debug::NoLocking", false) == false) {
- Lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
- if (_error->PendingError() == true)
- return HandleErrors();
- }
-
- pkgSourceList List;
- if(!List.ReadMainList()) {
- Py_INCREF(Py_None);
- return HandleErrors(Py_None);
- }
-
PyFetchProgress progress;
progress.setCallbackInst(pyFetchProgressInst);
+ pkgSourceList *source = GetCpp<pkgSourceList*>(pySourcesList);
+ bool res = ListUpdate(progress, *source);
- pkgAcquire Fetcher(&progress);
- if (!List.GetIndexes(&Fetcher))
- return HandleErrors();
- if (Fetcher.Run() == pkgAcquire::Failed) {
- Py_INCREF(Py_None);
- return HandleErrors(Py_None);
- }
-
-#if 0 // reopening the cache is the job of the python code now
- // doing it here is wrong and broken
- if(pyOpProgressInst != 0) {
- PyOpProgress progress;
- progress.setCallbackInst(pyOpProgressInst);
- if (Cache->Open(progress,false) == false)
- return HandleErrors();
- } else {
- OpTextProgress Prog;
- if (Cache->Open(Prog,false) == false) {
- Py_INCREF(Py_None);
- return HandleErrors(Py_None);
- }
- }
-#endif
-
- Py_INCREF(Py_None);
- return HandleErrors(Py_None);
+ PyObject *PyRes = Py_BuildValue("b", res);
+ return HandleErrors(PyRes);
}
static PyObject *PkgCacheClose(PyObject *Self,PyObject *Args)
diff --git a/python/pkgrecords.cc b/python/pkgrecords.cc
index 466a2f30..93bc54d9 100644
--- a/python/pkgrecords.cc
+++ b/python/pkgrecords.cc
@@ -77,6 +77,8 @@ static PyObject *PkgRecordsAttr(PyObject *Self,char *Name)
return CppPyString(Struct.Last->LongDesc());
else if (strcmp("Name",Name) == 0)
return CppPyString(Struct.Last->Name());
+ else if (strcmp("Homepage",Name) == 0)
+ return CppPyString(Struct.Last->Homepage());
else if (strcmp("Record", Name) == 0)
{
const char *start, *stop;
diff --git a/python/sourcelist.cc b/python/sourcelist.cc
index 68b764f8..76df015d 100644
--- a/python/sourcelist.cc
+++ b/python/sourcelist.cc
@@ -60,12 +60,12 @@ static PyObject *PkgSourceListGetIndexes(PyObject *Self,PyObject *Args)
pkgSourceList *list = GetCpp<pkgSourceList*>(Self);
PyObject *pyFetcher;
-
- if (PyArg_ParseTuple(Args, "O!",&PkgAcquireType,&pyFetcher) == 0)
+ char all = 0;
+ if (PyArg_ParseTuple(Args, "O!|b",&PkgAcquireType,&pyFetcher, &all) == 0)
return 0;
pkgAcquire *fetcher = GetCpp<pkgAcquire*>(pyFetcher);
- bool res = list->GetIndexes(fetcher);
+ bool res = list->GetIndexes(fetcher, all);
return HandleErrors(Py_BuildValue("b",res));
}
diff --git a/python/tar.cc b/python/tar.cc
index 22c0327e..61c9d708 100644
--- a/python/tar.cc
+++ b/python/tar.cc
@@ -168,6 +168,8 @@ PyObject *debExtract(PyObject *Self,PyObject *Args)
// Extract it.
if (strcmp(".bz2", &Chunk[strlen(Chunk)-4]) == 0)
Comp = "bzip2";
+ else if(strcmp(".lzma", &Chunk[strlen(Chunk)-5]) == 0)
+ Comp = "lzma";
ExtractTar Tar(Deb.GetFile(),Member->Size,Comp);
ProcessTar Proc(Function);
if (Tar.Go(Proc) == false)